I am writing a form validation class and wish to include regular expressions in the validation. Therefore, the regex provided isn’t guaranteed to be valid.
How can I (efficiently) check that the regex is valid?
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.
Use the pattern in your
preg_*calls. If the function returnsfalsethere is likely a problem with your pattern. As far as I know this is the easiest way to check if a regex pattern is valid in PHP.Here’s an example specifying the right kind of boolean check: