使用 Regex.Matches(str1,str2).Count 来判断字符串str2在str1中出现的次数
Posted on 2007-03-05 16:28 孤峰皓月 阅读(1608) 评论(0) 编辑 收藏 举报
使用 Regex.Matches(str1,str2).Count 来判断字符串str2在str1中出现的次数
引用命名空间using System.Text.RegularExpressions;
在输入字符串中搜索正则表达式的所有匹配项并返回所有成功的匹配,就像多次调用 Match 一样。
属性: Count
引用命名空间using System.Text.RegularExpressions;
在输入字符串中搜索正则表达式的所有匹配项并返回所有成功的匹配,就像多次调用 Match 一样。
方法重载列表
名称 | 说明 |
---|---|
Regex.Matches (String) | 由 .NET Compact Framework 支持。 |
Regex.Matches (String, Int32) | 由 .NET Compact Framework 支持。 |
Regex.Matches (String, String) | 由 .NET Compact Framework 支持。 |
Regex.Matches (String, String, RegexOptions) | 由 .NET Compact Framework 支持。 |
属性: Count