Hey guys can you help me with this. I’ve got this ‘/[^A-Za-z]/’ but cannot figure out the punctuations part.
Gracious!
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.
The regular expression you are using doesn’t allow letters; it’s the opposite of what you are reported in the title.
/[a-z]/iis enough, if you want to accept only letters. If you want to allow letters like à, è, or ç, then you should expand the regular expression;/[\p{L}]/uishould work with all the Unicode letters.