日期:2014-05-17 浏览次数:20682 次
//提供的字符串特征:
//班级位于行首,并后跟空白字符
System.Text.RegularExpressions.Regex regClass = new System.Text.RegularExpressions.Regex(@"^\S+",
System.Text.RegularExpressions.RegexOptions.Multiline);
//在校周期以“-”连接两个数字
System.Text.RegularExpressions.Regex regPeriod = new System.Text.RegularExpressions.Regex(@"\d+\-\d+",
System.Text.RegularExpressions.RegexOptions.Multiline);
string sToMatch = "高护32班 班主任:吴会长 (2007-2008学年第一学期)";
System.Text.RegularExpressions.Match match = regClass.Match(sToMatch);
if (match != null)
Console.WriteLine("班组:" + match.Value);
match = regPeriod.Match(sToMatch);
if (match != null)
Console.WriteLine("在校周期:" + match.Value);
//提供的字符串特征:
//班级位于行首,并后跟空白字符