Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Re (3): Removing Spaces From A File

by ellem (Hermit)
on Mar 04, 2003 at 17:08 UTC ( [id://240426]=note: print w/replies, xml ) Need Help??


in reply to Re (3): Removing Spaces From A File
in thread Removing Spaces From A File

Here's what I got:
my($name, $pwd); while(<LIST>) { chomp; $name = $pwd = $_ ; $name =~ s/\s//g ; $pwd =~ s/\s//g ; $pwd =~ tr [ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvw +xyz] [2223334445556667778889990022233344455566677788899 +900] ; write NEWFILE ; }
Seems like it is a little clunky. Not the way I imagined it but it does work. I was thinking more along the lines of:

Aaaa aaaa --> Aaaaaaaa --> 222222222 --> 22222
$name ------> $name -----> $pwd -------> Output
Read file --> Remove spaces -> Transliterate -> Print file
--
ellem@optonline.net
There's more than one way to do it, but only some of them actually work.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-26 06:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found