文件名称:Regex类(续)-C#入门经典教程
文件大小:4.81MB
文件格式:PPT
更新时间:2024-05-13 13:36:58
c#
Regex类(续) public static bool IsMatch(string str, string pattern); 表示使用pattern参数中指定的正则表达式是否在str中找到匹配项。 public static bool IsMatch(string str, string pattern, RegexOptions options); 表示使用pattern参数中指定的正则表达式和options枚举提供的匹配选项在input中是否找到匹配项。其中options是RegexOption枚举值的按位“或”组合。