正则匹配起始字符串之间的文本

老是用到这个正则索性摸索了一下,试出了一个比较可靠的正则:

        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之后应该能匹配多个结果,就这样吧,有空再续。

posted @ 2017-09-01 15:19  顾星河  阅读(275)  评论(0编辑  收藏  举报