Answers for "should the name for the method be capitalized java"

4

java method to capitalize first letter

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

Code answers related to "should the name for the method be capitalized java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language