Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: cleaning up control characters

by jeroenes (Priest)
on Oct 27, 2001 at 00:51 UTC ( [id://121694]=note: print w/replies, xml ) Need Help??


in reply to cleaning up control characters

Take a look in perlre. \D is the non-digit class, but maybe that isn't what you want. You'd better look up which control chars you can encounter there and use an custom class. Something like:
s/^[\001-\017\s]{0,2}//; # char 0 to 15 (and whitespace)
While we're at it, why not simplify it to a one-liner?
perl -pe 's/^[\001-\017\s]{0,2}//' infile.txt >outfile.txt
See perlrun for nifty options... the 'i' is also very useful.

Cheers,

Jeroen
"We are not alone"(FZ)

Update Listen to blackmateria. Of course you use the :cntrl: POSIX class.. much more convenient.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://121694]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-25 04:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found