Re: [PHP] Splitting a string ...

[email protected] (shiplu)
Newsgroups php.general
Message-ID <[email protected]>
Here is the regex for you.


$company_domain = '\w+'; // replace with your own company domain pattern.
$user_name = '\w+'; // replace with your own username pattern
$email_domain = '\w+\.\w{2,4}'; // google for standard domain name
regex pattern and replace it.

$regexp = "~({$company_domain}[\\\\/])?(?P<username>$user_name)(@$email_domain)?~";

preg_match($regexp, $text, $matches);

print_r($matches); // $matches['username'] will contain username.

-- 
Shiplu Mokaddim
My talks, http://talk.cmyweb.net
Follow me, http://twitter.com/shiplu
SUST Programmers, http://groups.google.com/group/p2psust
Innovation distinguishes bet ... ... (ask Steve Jobs the rest)
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.