Answers for "manage the following exceptions as follows: I. When first character is not capital."

2

init cap java

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

Code answers related to "manage the following exceptions as follows: I. When first character is not capital."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language