【C#】字符串提取(获取两个字符串中间的字符串)

//------//搜索字符串(参数1:完整的内容,参数2:左边的内容,参数3:右边的内容)----(获取两个字符串中间的字符串)       
public static string Search_string(string s, string s1, string s2)  //获取搜索到的数目  
{
    int n1, n2;
    n1 = s.IndexOf(s1, 0) + s1.Length;   //开始位置  
    n2 = s.IndexOf(s2, n1);               //结束位置    
    return s.Substring(n1, n2 - n1);   //取搜索的条数,用结束的位置-开始的位置,并返回    
}
    原文作者:美丽人生จุ๊บ
    原文地址: https://blog.csdn.net/weixin_43553508/article/details/102673668
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞