I need regular expression for
1)Phone
like
+919000000000 (country code)(10 digits)
Please refer this HTML code
<asp:TextBox ID="txtPhone" runat="server" /> <asp:RegularExpressionValidator ErrorMessage="Invalid" ControlToValidate="txtPhone" ValidationExpression="^[+]{1}[0-9]{12}$" runat="server" /> <asp:Button Text="Save" runat="server" />
Thaks a lot for responces
I got it exact what I want
"^\+(?:[0-9]●?){6,14}[0-9]$"
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.