text = " a string of some sort, with space at either end "
text = text.strip()
####
my $text = " a string of some sort, with space at either end ";
$text = trim( $text );
####
my $TRIM_WHITESPACE_RE = qr/^\s+|\s+$/
## ... later on .. ##
$text =~ s/$TRIME_WHITESPACE_RE//g;