|
Posted by news on 09/18/05 07:04
God, I have read every comment in php.net eregi and Google searched,
and I have tried so many different attempts...this is the closest I've
gotten to verify a variable contains only:
alphanumerics, spaces, underscore, hyphen, period, apostrophe
if(eregi("^[a-z0-9 _.-]+$", $value))
{
return true;
}
Problem is, when I try to add anything else, like a comma or
apostrophe, it fails:
if(eregi("^[a-z0-9 _.-\\'\,]+$", $value))
and I can't get it to make sure the first character only is
alphanumeric:
if(eregi("^([a-z0-9])[a-z0-9 _.-\\'\,]+$", $value))
what am I missing? What am I doing wrong that I can simply add a comma
and apostrophe to the list of OK characters, and make sure only a num'
or letter is first? I've found A LOT of examples to verify e-mail
addresses...but all the + and brackets and whatnot confuse the heck out
of me, trying to interpret what does what in the order of expressions.
Thanks for any help.
Navigation:
[Reply to this message]
|