The regular expression that will match and capture any character until it reaches the @
character:
([^@]+)
That seems like what you need. It'll handle all kinds of freaky variations on e-mail addresses.
I'm not sure why Ben James deleted his answer, since I feel it's better than mine. I'm going to post it here (unless he undeletes his answer):
Why use regex instead of string functions?
$parts = explode("@", "[email protected]");
$username = $parts[0];
You don't need regular expressions in this situation at all. I think using explode
is a much better option, personally.
As Johannes Rössel points out in the comments, e-mail address parsing is rather complicated. If you want to be 100% sure that you will be able to handle any technically-valid e-mail address, you're going to have to write a routine that will handle quoting properly, because both solutions listed in my answer will choke on addresses like "a@b"@example.com
. There may be a library that handles this kind of parsing for you, but I am unaware of it.