Asked 3 months ago in Web Development by Austin May Answer
Hi all,
I have to validate the username in one of my projects with this format AAAAA_000000.
Here,
How can I do this task with javascript?
Tags
Answered 3 months ago by Bruna Amaral
Try the following regular expression to validate your usernames.
/[a-zA-Z]{8}[_]{1}[0-9]{7}$/g