umanglani
0
Q:

java string uppercase

public class Guru99 {   
    public static void main(String args[]) {       
        String S1 = new String("minúsculas convertidas en mayúsculas");       
 
        // Convertir a UpperCase    
        System.out.println(S1.toUpperCase());   
    }
}
1
string s="hello";
s = Character.toUpperCase(s.charAt(0)) + s.substring(1);
The output will be: Hello
2
String txt = "Hello World";
System.out.println(txt.toUpperCase());
System.out.println(txt.toLowerCase());
0

New to Communities?

Join the community