c#截取两个指定字符串中间的字符串
Posted 在点滴积累中进步
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#截取两个指定字符串中间的字符串相关的知识,希望对你有一定的参考价值。
写法有很多,记录常用的两种:
1、正则表达式
1 public static string MidStrEx_New(string sourse, string startstr, string endstr) 2 { 3 Regex rg = new Regex("(?<=(" + startstr + "))[.\\s\\S]*?(?=(" + endstr + "))", RegexOptions.Multiline | RegexOptions.Singleline); 4 return rg.Match(sourse).Value; 5 }
2、利用字符串indexof截取:
1 public static string MidStrEx(string sourse, string startstr, string endstr) 2 { 3 string result = string.Empty; 4 int startindex, endindex; 5 try 6 { 7 startindex = sourse.IndexOf(startstr); 8 if (startindex == -1) 9 return result; 10 string tmpstr = sourse.Substring(startindex + startstr.Length); 11 endindex = tmpstr.IndexOf(endstr); 12 if (endindex == -1) 13 return result; 14 result = tmpstr.Remove(endindex); 15 } 16 catch (Exception ex) 17 { 18 Log.WriteLog("MidStrEx Err:" + ex.Message); 19 } 20 return result; 21 }
就效率来说,测试了几次,方法2比方法1大约快10倍
以上是关于c#截取两个指定字符串中间的字符串的主要内容,如果未能解决你的问题,请参考以下文章