do you need to use preg_match? for something this simple, you should be able to use the string operators...
thought about this myself, and was going to work it out, but just found the following example in the php manual
$email = 'user@example.com';
$domain = strstr($email, '@');
print $domain; // prints @example.com
ref: strstr()