[PHP] Parse a string containing name and email

2010-03-06 Thread Don
Hi,

I am pulling email values out of a database and the format is as follows:

John Smithjohn.sm...@somedomain.com

I need to parse the string into two variables as such

$name = John Smith
$email = john.sm...@somedomain.com

What would be the easiest way to do this?

Thanks. 



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



Re: [PHP] Parse a string containing name and email

2010-03-06 Thread Kevin Kinsey

Don wrote:

Hi,

I am pulling email values out of a database and the format is as follows:

John Smithjohn.sm...@somedomain.com

I need to parse the string into two variables as such

$name = John Smith
$email = john.sm...@somedomain.com

What would be the easiest way to do this?

Thanks. 


[36] Sun 07.Mar.2010 0:27:35
[kad...@archangel][~/scripts] cat split
?php
$data=John Smithj...@foo.com;
list($name,$email)=explode(,str_replace(,,$data));
echo $name's email address is $email;
?

[37] Sun 07.Mar.2010 0:27:40
[kad...@archangel][~/scripts] php split
John Smith's email address is j...@foo.com

Throw in a foreach() and some data writes or w/e, and you're done.

Kevin Kinsey

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