[Solved] Regular Expression for nickname [closed]


This is something to get you started, but you’ll need to tweak it and adapt it to what you need:

[a-zA-Z]\w{5,14}
^       ^
|       match an alphanumeric or underscore character 5 to 14 times
|
match a single alphabetic character

6

solved Regular Expression for nickname [closed]