http://qs1969.pair.com?node_id=961913


in reply to How to Remove Commas ?

The substitute command works really nicely here:
# remove commas from $filesize string # =================================== $filesize =~ s/,//;
Regular expressions like these are one of Perl's strengths.