//ERDDAP/com.cohort.util/ScriptString2/camelCaseToTitleCase
camelCaseToTitleCase
[JVM]
open fun camelCaseToTitleCase(s: String): String
This converts "camelCase99String" to "Camel Case 99 String"
Return
the string with spaces before capital letters. null returns null. "" returns "".
Parameters
JVM
s | the camel case string. |