验证是数字还是字母加数字的

    public bool is_str_num(string product_no)
    {
        return System.Text.RegularExpressions.Regex.IsMatch(product_no, @"^[A-Za-z0-9]+$");

    }

    public bool is_num(string product_no2)
    {
        return System.Text.RegularExpressions.Regex.IsMatch(product_no2, @"^[0-9]*$");
    }
posted @ 2011-07-01 16:04  小锋神  阅读(212)  评论(0编辑  收藏  举报