我正在尝试使用正则表达式验证器在 Visual Studio 中(###)###-####
验证格式的电话号码。\([0-9]{3}\)[0-9]{3}-[0-9]{4}
我收到带有 (111)111-1111 的错误消息。然而,当我在正则表达式测试站点上执行此操作时,它工作正常。这里还有其他我想念的东西吗?
<asp:RegularExpressionValidator
ID="PhoneValidator"
runat="server"
ErrorMessage="Phone Format Must Be (###)###-####"
ValidationExpression="/\([0-9]{3}\)[0-9]{3}-[0-9]{4}/g"
Display="None"
ControlToValidate="PhoneTextBox">
</asp:RegularExpressionValidator>