I am a beginner in Java trying to write a program to convert strings into title case. For example, if String s = \"my name is milind\", then the output should b
You want to change the case of the first letter of each word of a String.
To do so, I would follow the following steps :
+) and String.substring