摘要:
使用 Regex.Matches(str1,str2).Count 来判断字符串str2在str1中出现的次数
引用命名空间using System.Text.RegularExpressions;
1 string str1 = "高山高地高地";
2 string str2 = "高";
3 Response.Write(Regex.Matches(str1,str2).Count);
4
阅读全文
posted @ 2007-03-05 16:28 孤峰皓月 阅读(1608) 评论(0) 推荐(0) 编辑