Is there any kind of method I can call to translate a file with uppercase and lowercase letters to all lowercase?
Printable View
Is there any kind of method I can call to translate a file with uppercase and lowercase letters to all lowercase?
yes, there is a string method called toLowerCase() you would use it like this:
String a = "TEXT";
a.toLowerCase();
then the string a would contain "text"
so what you would do is read the file into a string, maybe line by line, and apply this method to each line.
:)
Ahh... thanks alot, helped much:)