Answers for "Write a Java program to capitalize the first letter of each word in a sentence. without using string functions."

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 "Write a Java program to capitalize the first letter of each word in a sentence. without using string functions."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language