C# 截取两个字符串中间的子字符串

2021-07-05 07:15

阅读:492

标签:中间   str   single   lin   ret   star   summary   turn   sum   

/// 
/// 截取中间字符
/// 
/// 全字符串
/// 开始字符串 
/// 结束字符串 
/// 
public static string Substring(string text,string start,string end)
{
    Regex regex = new Regex("(?" + start + "))[.\\s\\S]*?(?=(" + end + "))", RegexOptions.Multiline | RegexOptions.Singleline);
    return regex.Match(text).Value;
}

 

C# 截取两个字符串中间的子字符串

标签:中间   str   single   lin   ret   star   summary   turn   sum   

原文地址:https://www.cnblogs.com/Wonderful-Life/p/9831483.html


评论


亲,登录后才可以留言!