2007年4月23日

c# 手机号码正则表达式

摘要: string mobile = "132008888888";Match m = Regex.Match(mobile, "(13|15)\\d{9}");while (m.Success){ //其他操作 m = m.NextMatch();} 阅读全文

posted @ 2007-04-23 18:24 myer 阅读(5316) 评论(0) 推荐(0) 编辑

导航