Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Re: Case-preserving substitutions

by petral (Curate)
on Jan 18, 2002 at 23:54 UTC ( [id://139932]=note: print w/replies, xml ) Need Help??


in reply to Re: Case-preserving substitutions
in thread Case-preserving substitutions

Another try at explaining this:

When dealing with 7-bit ascci, the Uppercase begins at 65 and the lowercase at 97 -- 32 higher.   Since 32 is a power of two represented by bit 5 of the character, if this bit is set, the letter is lc, if unset, Uc.
$ perl -lwe'$,=$\;print unpack("B*","A"), unpack("B*","a"), unpack"B*" +,"A"^"a"' 01000001 <- "A": 64 + 1 01100001 <- "a": 64 + 32 + 1 00100000 <- result of XORing
The bit will be set only if the original was uppercase.   Since XORing something with itself is always 0, that is the only bit which can be set.   The lc of the replacement will have that bit set because that's what makes it lc, with other bits set to determine which letter.  

So, bit 5 is set in the XORing of the original with its lc self only if the original is Uc (the opposite of the bits meaning!) and set in the lc replacement.   If they are both set XOR clears the result: hence Uc; if only the replacement is set it leaves it: lc.

I think at this point I should exclaim "QED" and run.   It seemed clear enough before I started trying to explain it in this little box!

update:   But note that jryan's answer above will work with any locale !

reupdate;   IO points out (and I should've checked) that capitalizing-by-resetting-bit-5 also works for the 8-bit characters in the standard ISO8859-1 ("latin-1") character set.

  p

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-19 05:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found