All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cultureamp.common.Strings.kt Maven / Gradle / Ivy

package com.cultureamp.common

fun String.toSnakeCase(): String {
    var text = ""
    var isFirst = true
    this.forEach {
        if (it.isUpperCase()) {
            if (isFirst) isFirst = false
            else text += "_"
            text += it.lowercaseChar()
        } else {
            text += it
        }
    }
    return text
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy