I know this way
val str=org.apache.commons.lang.WordUtils.capitalizeFully("is There any other WAY"))
Want to know is there any other way to do the Same.
something in Scala Style
The string's first character is extracted using charAt() method. Here, str. charAt(0); gives j. The toUpperCase() method converts the string to uppercase.
var str = text. toLowerCase().
Capitalize the first letter of a string:
"is There any other WAY".capitalize res8: String = Is There any other WAY
Capitalize the first letter of every word in a string:
"is There any other WAY".split(' ').map(_.capitalize).mkString(" ") res9: String = Is There Any Other WAY
Capitalize the first letter of a string, while lower-casing everything else:
"is There any other WAY".toLowerCase.capitalize res7: String = Is there any other way
Capitalize the first letter of every word in a string, while lower-casing everything else:
"is There any other WAY".toLowerCase.split(' ').map(_.capitalize).mkString(" ") res6: String = Is There Any Other Way
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With