I am trying to allow all special characters and characters using regex.
Currently I have it set up like this
const textValidation = new RegExp("^[A-Za-z0-9_ -]*$");
How would I modfiy this code to allow special characters as well?
Edit: The special character I want to allow are parentheses, this along with all the other characters