php-db | 2004071
Date: 07/15/04
- Next message: Justin Patrin: "Re: [PHP-DB] Easy reg expression problem"
- Previous message: Justin Patrin: "Re: [PHP-DB] Easy reg expression problem"
- In reply to: ioannes: "[PHP-DB] Easy reg expression problem"
- Next in thread: Justin Patrin: "Re: [PHP-DB] Easy reg expression problem"
- Reply: Justin Patrin: "Re: [PHP-DB] Easy reg expression problem"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Friday 16 July 2004 07:43, ioannes wrote:
> I am trying to work out how to isolate the bit after and including the @ in
> an email address using php. I would be grateful if someone could point me
> to the expression.
>
> $email="me <email protected>";
> ereg("([a-zA-Z0-9])@([a-zA-Z0-9]).([a-zA-Z0-9]))", $email, $regs);
> print("@".$regs[1].$regs[2].$regs[3]);
>
> prints @
>
> What am I doing/need to do?
If you're simply trying to get ' <email protected>' then use strstr().
-- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * ------------------------------------------ Search the list archives before you post http://marc.theaimsgroup.com/?l=php-db ------------------------------------------ /* To our sweethearts and wives. May they never meet. -- 19th century toast */-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Justin Patrin: "Re: [PHP-DB] Easy reg expression problem"
- Previous message: Justin Patrin: "Re: [PHP-DB] Easy reg expression problem"
- In reply to: ioannes: "[PHP-DB] Easy reg expression problem"
- Next in thread: Justin Patrin: "Re: [PHP-DB] Easy reg expression problem"
- Reply: Justin Patrin: "Re: [PHP-DB] Easy reg expression problem"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

