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

commonTest.maryk.prepend0.kt Maven / Gradle / Ivy

package maryk

fun String.prepend0(totalCharacters: Int): String {
    var newString = this
    for (it in 0 .. totalCharacters - this.length) {
        newString = "0$newString"
    }
    return newString
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy