como apanhar caracter de uma string em java

Solutions on MaxInterview for como apanhar caracter de uma string em java by the best coders in the world

showing results for - "como apanhar caracter de uma string em java"
Ismail
28 Mar 2020
1String text = "Hello World!";
2//To get the first charecter from a String
3String a = text.substring(0, 1);