Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi devs, I have to validate username with this format "xxxxxxxx_0000000". x = any character, 0 = any number. How can I do it with javascript?
try, /[a-zA-Z]{8}[_]{1}[0-9]{7}$/g
/[a-zA-Z]{8}[_]{1}[0-9]{7}$/g
Awesome! Thanks, mate
welcome bro...