我需要验证手机号码。因为它应该有10位数,它应该只允许数字。我的要求是第一个数字不应为0
public string mobile{set; get;}
答案 0 :(得分:1)
假设这是您模型的属性,请使用RegularExpressionAttribute。
[RegularExpression("^[1-9]\d{9}$", ErrorMessage = "Invalid phone number")]
public string mobile { set; get; }