i have used loaded files before but not like this, can someone help
I am trying to decode a file which is loaded by inFile.open
the message is coded to where all lower case letters become upper case adn are moved one to the left, as in a = Z, b = A, c = B and so on.
lower case letters are opposite, so A = b, Z = a and so forth.
there are also numbers which represent punctuation which i need to decode
i am doing them in functions, my question is how do you tell the com if it is uppercase and lower case or number, i know how to tell it to convert after but am unsure how to put the if() statements to tell if it is an upper case letter, lower case, or number. which will determine which function it does to decode it
as an added note, it also uses ascII 22 which is SYN to represent spaces, how can i make them into spaces?
nevermind didn't see that there are things like isupper() and islower() already in them never used them before, but my question about using SYN as a space still remains