Hello,
I want expression for not acception string with specials characters.
So I was with expression
/^[ A-Za-z0-9_@.#&,()-]*$/
But it is accepting only special chars also.
How can I restrict it for not acceptiong only special chars?
like my string should contain atleast one character.