FIRST_LETTER
FIRST_LETTER("first letter", { string -> string.split(' ').joinToString(" ") { it.toSentenceCase() } })
Content copied to clipboard
Makes the first letter of each word uppercase.
Makes the first letter of each word uppercase.