toDisplayCase

fun toDisplayCase(s: String): String

Converts a string to display case, where the first letter of every word is capitalised.

Return

the modified java.lang.String which has been converted to display (title) case

Parameters