Capitalize the first letter of every word in Scala
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 … Read more