////// 指定开始字符串和结束字符串,截取中间的字符 /// /// 要截取的字符串 /// 开始字符串 /// 结束字符串 ///public static string GetValue(string str, string s, string e) { Regex rg = new Regex("(?<=(" + s + "))[.\\s\\S]*?(?=(" + e + "))", RegexOptions.Multiline | RegexOptions.Singleline); return rg.Match(str).Value; }