org.kbods.utils.strings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kbods-internals Show documentation
Show all versions of kbods-internals Show documentation
Internal commons and utils for KBODS
The newest version!
package org.kbods.utils
fun String.cleanWhitespace(): String {
return replace("\\s+".toRegex(), " ").trim()
}