C#制作的简单正则表达式测试器 代码: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Text.RegularExpressions; using S
本文实例讲述了C#正则表达式匹配与替换字符串功能。分享给大家供大家参考,具体如下:
事例一:\w+=>[A-Za-z1-9_],\s+=>任何空白字符,()=>捕获
string text = public string testMatchObj string s string match ;
string pat = (\w+)\s+(string);
// Compile the regular expression.
Regex r = new Regex(