Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
When a character is lower case, then bit 32 of its ASCII code willbe on; Notice that the ASCII character A has a codeof 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 properbitwise operators (Or and And Not) to set bit 32 on thecharacter.
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.