mrtreinis
gjesse
println("a or b".replace("\\s".toRegex(), "_")) println("a or b".replace("""\s""".toRegex(), "_"))
xxx.trim(' ', '/', '\t', '\n', '\r')
str.replace("[\\t/\\n\\r\\s]".toRegex(), "")
fun String.myTrim() = this.replace("[\\t/\\n\\r\\s]".toRegex(), "")
xxx.myTrim()
A modern programming language that makes developers happier.