in reply to How do I remove whitespace at the beginning or end of my string?
$string =~ s/^\s*(.*?)\s*$/$1/; [download]