public static bool RegexValidate(string regexString, string validateString)
 {
     Regex regex = new Regex(regexString);
     return regex.IsMatch(validateString.Trim());
 }  

  

相关文章:

  • 2022-02-19
  • 2021-10-19
  • 2021-11-24
  • 2021-05-27
  • 2021-07-02
  • 2021-08-09
猜你喜欢
  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-06
相关资源
相似解决方案