Posts by Guilherme Guimarães • 1 point
1 post
-
-3
votes7
answers5040
viewsA: Regular expression for accepting numbers and letters, regardless of sequence
Dude, it’s like because it’s a regular expression. Example link in regexr: https://regexr.com/5p75r Explaining the regex: ^(?=[a-zA-Z0-9!@#$%\^&*()]{8,32}$) ensures that from start to finish, it…