Skip to content

Instantly share code, notes, and snippets.

@mmar
Last active August 29, 2015 14:25
Show Gist options
  • Save mmar/0ad94af01f9ca813eb98 to your computer and use it in GitHub Desktop.
Save mmar/0ad94af01f9ca813eb98 to your computer and use it in GitHub Desktop.
Try go guess names from email addresses
## Usage: my $name = guess_name_from_email( $email );
sub guess_name_from_email {
return join q( ), map { ucfirst lc } ( sub { ( shift, pop ) } )->( split /\./, ( split /@/, shift )[0] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment