Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在对传真号码使用以下验证:
[RegularExpression(@"^\+[0-9]{1,3}\([0-9]{3}\)[0-9]{7}$", ErrorMessage = "This is not a valid fax number.")]
但传真号码表单条目不接受任何输入。
尝试这个;
\+[0-9]{1,3}\([0-9]{3}\)[0-9]{7}
样本输出;
+895(194)6165163 +09(155)2541778
你不需要为此使用^。它的意思是“除了”。
^
^[01]?[- .]?\(?[2-9]\d{2}\)?[- .]?\d{3}[- .]?\d{4}$
尝试这个........