Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Re: Re: whitespaces replace with tabs - help needed...

by hagen (Friar)
on Aug 15, 2003 at 02:51 UTC ( [id://284079]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: whitespaces replace with tabs - help needed...
in thread whitespaces replace with tabs - help needed...

Hi,

you may want to take a look at tr// (`translate'), especially the `s' modifier. This will replace multiple duplicated characters with one instance of the required character.

For example, in your line

$_=~s/ +/\t/s;,

(the $_ isn't really necessary here) you could have

tr/ /\t/s;. I understand it's quite a bit more efficient.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-24 18:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found