Como apanhar cuidador de Uma String em java
String text = "Hello World!";
//To get the first charecter from a String
String a = text.substring(0, 1);
Unsightly Unicorn
String text = "Hello World!";
//To get the first charecter from a String
String a = text.substring(0, 1);