日期:2014-05-17 浏览次数:20834 次
System.IO.StreamReader reader1 = new System.IO.StreamReader("e:\\1.txt",Encoding.Default);
string str = @"中华人民共和国成立于1949年10月1日,I、U、R、#";
string strmatch = @"(?is)[\d]+
------解决方案--------------------
[a-z]
------解决方案--------------------
#";
System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(strmatch);
System.Text.RegularExpressions.MatchCollection mc = reg.Matches(str);
foreach (System.Text.RegularExpressions.Match mm in mc)
{
MessageBox.Show(mm.Value);
}