正则截取内容

  public string GetSubValue(string str, string s, string e)
        {
            Regex rg = new Regex("(?<=(" + s + "))[.\\s\\S]*?(?=(" + e + "))", RegexOptions.Multiline | RegexOptions.Singleline);
            return rg.Match(str).Value;
        }
posted @ 2010-09-30 11:04  大笑江湖  阅读(260)  评论(2编辑  收藏  举报