in reply to Re^2: Wanted: humanly readable `script` output
in thread Wanted: humanly readable `script` output
Not really. Consider:
my $text = "No \x08\x08\x08 good"; $text =~ s/.\x08//g; print $text;
Prints:
No good
Perl is environmentally friendly - it saves trees
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Wanted: humanly readable `script` output
by Anonymous Monk on May 05, 2008 at 02:02 UTC |
In Section
Seekers of Perl Wisdom