PDA

View Full Version : Validation w- RegEx


allen_m
12-30-2008, 07:44 PM
i am attempting to validate input in an element, limiting input to exactly eight characters of numbers or case-insensitive text using the following expression:
[0-9A-Zt]{8}
And I cannot seem to get any valid input to pass scrutiny...

Am I using this feature correctly?

Plus error...
Warning: preg_match() [function.preg-match]: Unknown modifier '{' in /usr/www/users/myimpact/solutions/dev/components/com_fabrik/plugins/validationrule/regex/regex.php on line 87

TIA,

-Allen M.

cheesegrits
12-31-2008, 06:42 AM
Try enclosing it in some unique char like # ...

#[0-9A-Zt]{8}#

-- hugh