会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
轶东的程序世界
博客园
新随笔
联系
管理
订阅
2010年12月6日
正则表达式学习笔记
摘要: Regex rx = new Regex(@"1\d*2"); string s = "123123123"; mcoll = rx.Matches(s); Debug.WriteLine(mcoll.Count); string mxs; int j = 0; foreach (Match mx in mcoll) { if ((mxs = mx.ToString().Trim()) != ""...
阅读全文
posted @ 2010-12-06 16:12 赵轶东
阅读(163)
评论(1)
推荐(1)
编辑