日期:2014-05-18 浏览次数:21315 次
string s = "ffeeacc"; System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(@".*a.*b.*"); System.Text.RegularExpressions.Match m = reg.Match(s);
------解决方案--------------------
试试(.*)a+(.*)b+(.*)|(.*)b+(.*)a+(.*)
------解决方案--------------------