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;
        }

 

相关文章:

  • 2022-12-23
  • 2021-10-13
  • 2022-01-18
  • 2021-11-14
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-10
  • 2021-10-05
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
  • 2021-08-02
相关资源
相似解决方案