正则表达式
匹配1;2;3 的正则表达式
public static bool IsValidPage(string strIn,int b)
{
bool aa = Regex.IsMatch(strIn, @"([a-zA-Z0-9];){"+(b-1).ToString()+"}([a-zA-Z0-9])$");
return aa;
}
匹配1,2,3,4,.....31的正则表达式
@"([1-7],[1-7]$)+"
@"([1-9],[1-9],$)+|([12][0-9],$)+|(3[0-1],$)+"