in reply to Mixed Data
while($line = <INFILE>) { $line =~ s{[^ -~]}{}g; # [^ -~] matches non printable ASCII chars print "$line\n"; # your new lines are gone after the above }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Mixed Data
by krazken (Scribe) on Nov 09, 2001 at 09:59 UTC | |
by Zaxo (Archbishop) on Nov 09, 2001 at 14:28 UTC |