Skip to content

Instantly share code, notes, and snippets.

@kell05
Created September 26, 2011 14:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kell05/1242391 to your computer and use it in GitHub Desktop.
Save kell05/1242391 to your computer and use it in GitHub Desktop.
Trim Strings (Removal of prepending and appending white space)
sub trim($) {
my $string = shift;
$string =~ s/^\s+//;
$string =~ s/\s+$//;
return $string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment