Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: uc() every other letter

by echo (Pilgrim)
on Sep 28, 2001 at 13:26 UTC ( [id://115348]=note: print w/replies, xml ) Need Help??


in reply to uc() every other letter

%lcase = (a..z); @upcase = map { uc $_, $lcase{$_} } sort keys %lcase;

Replies are listed 'Best First'.
Re: Re: uc() every other letter
by tommyw (Hermit) on Sep 28, 2001 at 14:41 UTC
    Oooh. Bonus points for the obfuscated use of a hash to break out the alternate letters!
      Obfuscated? You are too kind. You got me thinking though...

      @upcase = map { chr(ord() ^ ((ord() & 1) << 5)) } (a..z);

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2024-04-16 15:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found