Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
General
i validation i want to check by validation expression
Gaurish
January 2014
i want to check validation for india mobile number the expression is ^[7-9][0-9]{9}$
no can u tell me which rule to select and how to enter it and check it
Harro
January 2014
Accepted Answer
You use the "match_pattern" rule to match any regex against the input field.
You can't use string notation (because of the brackets used in the regex string, you need to use add_rule:
->add_rule('match_pattern', '^[7-9][0-9]{9}$');
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,088
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
260
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
Harro
January 2014