正则匹配起始字符串之间的文本
老是用到这个正则索性摸索了一下,试出了一个比较可靠的正则:
public static string RegexReplaceStr(string regStr,string startStr,string endStr) { Regex regex = new Regex("(" + startStr + ").*?("+endStr+")"); Match match = regex.Match(regStr); string result = match.ToString(); result = result.Replace(startStr,"").Replace(endStr,""); return result; }
方法已经写好了,直接就能用,回头有空再多写几个重载之类的,上面只能匹配一次, Match改为Matchs之后应该能匹配多个结果,就这样吧,有空再续。
PS:转载请注明来源 https://www.cnblogs.com/sunshine-wy,疑问和勘误可在下方留言。