Quantcast
Channel: EasyOraDBA
Viewing all articles
Browse latest Browse all 263

Remove Whitespace Perl

$
0
0

Remove all whitespace from file

perl -lape ‘s/\s+//sg’ INPUT.TXT > OUTPUT.TXT

Remove whitespace more than one space

perl -wlpe ‘~ s/ +/ /g’ INPUT.TXT > OUTPUT.TXT

Remove whitespace more than one space and replace with ‘_’ character

perl -wlpe ‘~ s/ +/_/g’ INPUT.TXT > OUTPUT.TXT



Viewing all articles
Browse latest Browse all 263

Trending Articles