Similar to this topic.
I am trying to validate a username with the following restrictions:
- Must start with a letter or number
- Must be 3 to 15 characters in length
- Symbols include: . - _ ( ) [ ]
- Symbols cannot appear consecutively, but letters and numbers can
Edit:
- Letters and numbers are a-z A-Z 0-9
Been stumped for a while. I'm new to regex.