正则表达式

匹配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],$)+"

posted on 2008-08-28 17:00  J-Pei  阅读(259)  评论(0编辑  收藏  举报

导航