Can anyone let me know the regex for accepting Alphanumeric, a blank space and some special characters? Nothing is mandatory here.
i have already tried:
@"[-\w.?!,\(\)\-\+\'\;\:\&\""\@\s]"
but this is not working. I am doing this validation on server side and not in javascript.
The special characters it should accept are:
.?!,()-_+';:&""@
123abc&@ - valid,
123 - valid,
abc - valid,
&"@ - valid,
213^ - invalid,
^% - Invalid.