Is there a way to do this in one line?
$x =~ s/^\\s+//; $x =~ s/\\s+$//;
In other words, remove all leading and trailing whitespace from a stri
Or this: s/\A\s*|\s*\Z//g
s/\A\s*|\s*\Z//g