I have a code that compares cells (memory, with ASCII VALUES inside), so for example: if (message[0] == link[0]).
Stuff like this, I hope you know what I mean.
How can I check (without knowing what im going to check, for example, random ascii LETTER values), the values as incase sensitivity? so if it'll be like:
if ('A' == 'a') then it'll return TRUE. like someway to compare random letters incase sensitivitly. How can I do that?