Oct 13, 2005 #1 blues77 Programmer Joined Jun 11, 2002 Messages 230 Location CA Is there a command that will remove all trailing whitespace from a string?
Oct 13, 2005 1 #2 rharsh Technical User Joined Apr 2, 2004 Messages 960 Location US Code: $string =~ s/\s*$//; Upvote 0 Downvote