C# GetValue 正则获取开始结束代码

时间:2023-03-08 15:09:53
C# GetValue 正则获取开始结束代码
        /// <summary>
/// 获得字符串中开始和结束字符串中间得值
/// </summary>
/// <param name="str">字符串</param>
/// <param name="s">开始</param>
/// <param name="e">结束</param>
/// <returns></returns>
public string GetValue(string str, string s, string e)
{
Regex rg = new Regex("(?<=(" + s + "))[.\\s\\S]*?(?=(" + e + "))", RegexOptions.Singleline);
return rg.Match(str).Value;
}