I want to design an expression for not allowing whitespace at the beginning of the string. It should allow lowercase letters, numbers, hyphen and underscore.
I have tried below regex but not working
^[^\s][a-z0-9_-]+$
It should not allow: bbb78
I want to design an expression for not allowing whitespace at the beginning of the string. It should allow lowercase letters, numbers, hyphen and underscore.
I have tried below regex but not working
^[^\s][a-z0-9_-]+$
It should not allow: bbb78