Skip to content

Instantly share code, notes, and snippets.

@theshane
Created July 14, 2011 12:00
Show Gist options
  • Save theshane/1082325 to your computer and use it in GitHub Desktop.
Save theshane/1082325 to your computer and use it in GitHub Desktop.
Testing
sub getFirstEmail{
my $email = shift;
if($email){
if($email =~ /,/){
my @emails = split(',',$email);
$email = $emails[0];
}
}
return $email;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment