fun String.toTitleCase(): String {
return this.split(" ").joinToString(" ") { it.replaceFirstChar { char -> char.uppercase() } }
}
fun main() {
val str = "In the beginning there was nothing, which exploded."
val titleCaseString = str.toTitleCase()
println(titleCaseString)
}
/*
run:
In The Beginning There Was Nothing, Which Exploded.
*/