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