I want to use regular expression which validate the text which user enter.
/^[a-zA-Z0-9 ]+$/
By above line, we can allow only Alphabetic,
You just need to include this extra symbols in the character class you have in your regex.
You can use this regex:
/^[a-zA-Z0-9 "!?.-]+$/