I need to validate a Textbox in my Asp.Net application where the user can enter mobile number and it should starts with 078 and should contain 10 digits.
Sample:
^078[0-9]{7}$
This is a bit faster than \d if we use only numbers here.
\d