摘要:
.net中正则表达式用在字符串的匹配,查找,分割,替换,删除主要类有:System.Text.Regex;//正则表达式主要类Match//匹配结果MatchCollection//匹配结果集例子:class MatchingApp{static void Main(string[] args){Regex r=new Regex("in");Match m=r.Match("Matching")... 阅读全文
posted @ 2005-10-28 12:03 阿木申 阅读(1295) 评论(1) 推荐(0) 编辑