Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
java flow service to convert first letter of each word in a sentence into capital letter
Hi Naveen,
Is there any reason to use Java program?
Refer the below line/function, you may get some idea…
String s1 = name.substring(0, 1).toUpperCase() + name.substring(1);
Refer the following link: How to capitalize the first letter of a String in Java? - Stack Overflow
Regards, krish