Regex that includes alphabets, numbers, and some special characters

Regex that includes alphabets, numbers, and some special characters

^[a-zA-Z0-9!@#$%^&*()_+\-=[\]{};':"\\|,.<>/?]+$

View the logic image at https://regexper.com/.

From ihateregex.io/cheatsheet:

  • /[a-zA-Z0-9]/: matches all lowercase, uppercase letters and numbers

  • /^/ matches the beginning of a line

  • /$/ matches the end of a line