Asked 1 years ago in General Programming by Karmand Taher 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 1 years ago by Margo Shogren
Try the following regular expression to validate your usernames.
/[a-zA-Z]{8}[_]{1}[0-9]{7}$/g