como apanhar caracter de uma string em java code example
Example: como apanhar caracter de uma string em java
String text = "Hello World!";
//To get the first charecter from a String
String a = text.substring(0, 1);
String text = "Hello World!";
//To get the first charecter from a String
String a = text.substring(0, 1);