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

org.jetbrains.kotlinx.jupyter.common.EnumUtil.kt Maven / Gradle / Ivy

There is a newer version: 0.12.0-356
Show newest version
package org.jetbrains.kotlinx.jupyter.common

private val enumNameRegex = Regex("_(.)")

@OptIn(ExperimentalStdlibApi::class)
fun getNameForUser(name: String): String {
    return enumNameRegex.replace(name.lowercase()) { match ->
        match.groupValues[1].uppercase()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy