C#通用功能函数

usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
namespace字符串提取
{
    classProgram
    {
        staticvoid Main(string[] args)
        {
            Console.WriteLine("原字符串:evvwrgtg提取aerhae");
            Console.WriteLine("提取到的字符串:"+ Search_string("evvwrgtg提取aerhae","evvwrgtg","aerhae"));
            Console.Read();
        }
        //------//搜索字符串(参数1:目标字符串,参数2:之前字符串,参数3:之后字符串)----(获取两个字符串中间的字符串)
        publicstatic string Search_string(strings, string s1, string s2)  //获取搜索到的数目
        {
            intn1, n2;
            n1 = s.IndexOf(s1, 0) + s1.Length;   //开始位置
            n2 = s.IndexOf(s2, n1);              //结束位置
            returns.Substring(n1, n2 - n1);   //取搜索的条数,用结束的位置-开始的位置,并返回
        }
    }
}
posted @ 2012-05-07 14:54  最帅的蛋挞  阅读(196)  评论(0编辑  收藏  举报