C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Tip: Numbers, punctuation and whitespace are unaffected by these two methods. Sometimes, the methods will make no changes.
Info: The space character in the string "The Golden Bowl" is not changed. You cannot uppercase a space.
Java program that changes casing
public class Program {
public static void main(String[] args) {
// A mixed-case string.
String value1 = "The Golden Bowl";
// Change casing.
String upper = value1.toUpperCase();
String lower = value1.toLowerCase();
// Print results.
System.out.println(upper);
System.out.println(lower);
}
}
Output
THE GOLDEN BOWL
the golden bowl