Why is this expression returning true for character 1 or V (and others)?
How could I rewrite it so that it would return true only when it’s blank or a character from a-z?
~((^$)||(^[a-z]$))~
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.
Your problem is in the middle:
That means:
And the empty string can be between any character. Or no characters. Basically, you’re saying “Match anything.”
To do an OR with a regex, only use a single pipe.
You can simplify this to: