Skip to content

Instantly share code, notes, and snippets.

@zhester
Created May 19, 2014 16:57
Show Gist options
  • Save zhester/17580f1f63f14f010d50 to your computer and use it in GitHub Desktop.
Save zhester/17580f1f63f14f010d50 to your computer and use it in GitHub Desktop.
Title Casing a Phrase
# A simple attempt at faking title case on a phrase.
sub titlecase {
$_ = shift;
my @words = split( / / );
my @twords;
foreach ( @words ) {
$_ = lc( $_ );
$_ = ucfirst( $_ );
push( @twords, $_ );
}
return join( " ", @twords );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment