Problems With Regular Expressions In PHP?
Posted
- June 29th, 2006
Comments
Tags
I just came across a really odd error while matching for some specific characters in PHP. I found the error while using both preg_match() and ereg().
With preg, the error was this:
Warning: preg_match() [function.preg-match]: Compilation failed: range out of order in character class at offset 11 in /temp.php on line 5
With ereg, the error was this:
Warning: ereg() [function.ereg]: REG_ERANGE in temp.php on line 13
Both were caused by the same error or bug. I’m not sure which.
Here is the bad code:
$userid = 'abcDEF_-.';
if(preg_match('/[^a-zA-Z0-9_-\.]/', $userid)) {
echo 'bad';
} else {
echo 'good';
}
if (ereg("[^a-zA-Z0-9_-.]", $userid)) {
echo 'bad';
} else {
echo 'good';
}
That all seems correct, doesn’t it? It is checking to see if the userid has something other than those characters.
The problem? The dash, or hyphen, being before the period. It thinks it’s a range, like you see in a-z. This may not be a bug, per se, but it’s certainly not smart enough for me.
The solution? Simply put the dash at the end of the regex.
$userid = 'abcDEF_-.';
if(preg_match('/[^a-zA-Z0-9_\.-]/', $userid)) {
echo 'bad';
} else {
echo 'good';
}
if (ereg("[^a-zA-Z0-9_.-]", $userid)) {
echo 'bad';
} else {
echo 'good';
}
Hope this helps out someone else in the future.
July 7th, 2006 at 12:53 am |
What a bizzare error. I just got it when I moved a site from one server to another.
Your fix worked thankfully.
January 27th, 2007 at 7:16 am |
Escaping the dash seems to work for preg_match too. Not for ereg for some reason though.
March 22nd, 2007 at 9:27 am |
Thanks for that, just ran into that problem and probably saved countless hours by reading this!
April 16th, 2007 at 10:33 am |
[…] aus, obwohl der Ausdruck richtig (escaped) zu sein scheint. Einen Workaround fand ich hier, nämlich das Setzen des Hyphens ans Ende der […]
October 8th, 2007 at 4:01 pm |
Yep saved me hours as well.
Thanks
January 17th, 2008 at 4:41 am |
Tahnk you, i haveed some problem too.
May 8th, 2008 at 3:00 pm |
Another grateful soul here, thanks!