private string ReplaceNoCase(string text, string oldValue, string newValue)
    {
        return System.Text.RegularExpressions.Regex.Replace(text, oldValue, newValue, System.Text.RegularExpressions.RegexOptions.IgnoreCase);
    }

 

相关文章:

  • 2022-01-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-16
  • 2021-11-27
猜你喜欢
  • 2022-12-23
  • 2022-02-04
  • 2022-12-23
  • 2021-08-23
  • 2022-02-24
  • 2021-05-16
  • 2022-12-23
相关资源
相似解决方案