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

run.smt.ktest.util.text.text.kt Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package run.smt.ktest.util.text

fun String.stripMargin(): String {
    val marginRegex = "\\s+\\|(.*)".toRegex()
    return lines()
        .map { if (it matches marginRegex) it.replace(marginRegex, "$1") else it }
        .joinToString("\n")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy