conver str to in java

Solutions on MaxInterview for conver str to in java by the best coders in the world

showing results for - "conver str to in java"
Tom
07 Sep 2018
1    int i=Integer.parseInt("str");  
Manuel
29 Jan 2021
1
2String str = "Hello World!";
3System.out.println(str.toUpperCase()); //prints "HELLO WORLD!"
4