Apparently there is a method that takes a char and returns a char: http://download.oracle.com/javase/6/docs/api/java/lang/Character.html#toLowerCase(char)
But I can\'t s
toLowerCase is a static method, as such you need to qualify it with the class it belongs to, as
Character.toLowerCase(c);