Skip to content

Instantly share code, notes, and snippets.

@cognominal
Last active September 9, 2022 08:09
Show Gist options
  • Save cognominal/0b9d49c4eec22ba2d6cab072aa088024 to your computer and use it in GitHub Desktop.
Save cognominal/0b9d49c4eec22ba2d6cab072aa088024 to your computer and use it in GitHub Desktop.
trim
sub trim($s) {
$_ = $s;
s/ ^ \s+//;
s/ \s+ $//;
$_
}
say "'" ~ trim(" toto ") ~ "'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment