String str = "hello world!";
// capitalize first letter
String output = str.substring(0, 1).toUpperCase() + str.substring(1);
// print the string
System.out.println(output);
// Hello world!
String var_name = "Jerry";
System.out.println(var_name.toUpperCase()); //JERRY
if (Character.isUpperCase(val)) {
System.out.println("Character is in Uppercase!");
}else {
System.out.println("Character is in Lowercase!");
}
string s="hello";
s = Character.toUpperCase(s.charAt(0)) + s.substring(1);
The output will be: Hello
String str = "java";
String cap = str.substring(0, 1).toUpperCase() + str.substring(1);