- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for toCamelCase (0.05 sec)
-
.teamcity/src/main/kotlin/common/CommonExtensions.kt
} } fun String.toCapitalized() = this.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() } fun String.toCamelCase() = lowercase().replace(Regex("_[a-z]")) { it.value[1].uppercase() } /** * Define clean up rules for the project. * See https://www.jetbrains.com/help/teamcity/teamcity-data-clean-up.html#Clean-up+Rules *
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0)