java make a string uppercase code example
Example 1: uppercase java
string s="hello";
s = Character.toUpperCase(s.charAt(0)) + s.substring(1);
The output will be: Hello
Example 2: java lower case to upper case
toUpperCase()
string s="hello";
s = Character.toUpperCase(s.charAt(0)) + s.substring(1);
The output will be: Hello
toUpperCase()