CapitalizationMode
A mode in which a word should be capitalized.
Entries
Link copied to clipboard
FIRST_LETTER("first letter", { string, _ -> string.split(' ').joinToString(" ") { it.toSentenceCase() } })
Content copied to clipboard
Makes the first letter of each word uppercase.