I’m trying to make sure a string I’m posting only has alphabetical and numberical letters/numbers + ,.; etc. However all checks I seem to do still bring back à è ò as valid?
Anyone know a solution for this?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you know exactly what characters you want to allow, a regex should be fitting your needs:
Be sure to escape meta characters, because for example a non-escaped dot (.) will match every character.