Searched refs:camelRegex (Results 1 – 1 of 1) sorted by relevance
28 val camelRegex = "(?<=[a-zA-Z])[A-Z]".toRegex() in fromCamelCase() constant29 return camelRegex.replace(input) { "_${it.value}" }.lowercase() in fromCamelCase()