http://www.perlmonks.org?node_id=295958


in reply to Removing delimiter

Hi brkstr,

The following should do what you ask, leaving the original file in FILENAME.bak

perl -pi.bak -e 's/,//g' FILENAME

Hope this helps

thinker