Why char is working but the string is not?
Lower Upper Problem
@Shortcuttohell
A char holds a single character , while a string holds lots of characters (internally, String objects save them in a char array) so you have to access them by there indices like s[0] and so on.