Answers for "how to capitalize first word of two string in java and combine them"

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 capitalize first word of two string in java and combine them"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language