I have this regex I'm using for username validation, but I don't understand regex very well.
Anyone can help me change this to allow hyphens please?
/^(?!.*[_.]$)(?=.{8,30}$)(?![_.])(?!.*[_.]{2})[a-zA-Z0-9._]+$/
I have this regex I'm using for username validation, but I don't understand regex very well.
Anyone can help me change this to allow hyphens please?
/^(?!.*[_.]$)(?=.{8,30}$)(?![_.])(?!.*[_.]{2})[a-zA-Z0-9._]+$/