I cant seem to find anything in the code igniter documentation about this but I am trying to set a length validation in my form, is this possible?
regex_match[/^[0-9().-]+$/]
this is for phone numbers.
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 this regex:
where n=minimum and m=maximum length.
You may omit the maximum to specify just a minimum, ie
or omit the minimum to specify just a maximum, ie
but this is the same as
^[0-9().-]{0,m}$so it’s not as helpful as the minimum-only version.