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