Reply to thread

When a character is lower case, then bit 32 of its ASCII code will

be on; Notice that the ASCII character A has a code

of 65, and a has a code of 97; exactly 32 apart.


You will need to convert the string to a byte array and use the proper

bitwise operators (Or and And Not) to set bit 32 on the

character.


Back
Top