> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Sunday, April 03, 2005 6:03 PM
> To: php-general@lists.php.net
> Subject: [PHP] Re: eregi problem
> 
> i'm not familliar with regular expresions but i think that  ^a-z - means
> that variable must start witx a-z characters
> you can chek it  here:
> 
> http://www.php.net/manual/en/reference.pcre.pattern.syntax.php

True, but look careful at what HE did:

> > if((eregi("[^a-zA-Z0-9]",$GP[sifre])

Putting the ^ _inside_ [] means NOT, so if any of the chars a-z0-9 is in the 
string itīs NOT matched.

Also thereīs no idea in having a-zA-Z in the pattern since eregi() is case 
insensitive.

-- 
Med venlig hilsen / best regards
ComX Networks A/S
Kim Madsen 
Systemudvikler/systemdeveloper

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to