Answers for "how to capittialize only the first letter from the string in java"

3

how to uppercase the first letter of a string in java

String str = "java";
String cap = str.substring(0, 1).toUpperCase() + str.substring(1);
// cap = "Java"
Posted by: Guest on November-24-2020

Code answers related to "how to capittialize only the first letter from the string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language