
com.prt2121.kpop.internal.StringExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kpop-core Show documentation
Show all versions of kpop-core Show documentation
generate Kotlin extensions from Java static methods
The newest version!
package com.prt2121.kpop.internal
fun String.substringUntil(delimiter: String, missingDelimiterValue: String = this): String {
val index = indexOf(delimiter)
return if (index == -1) missingDelimiterValue else substring(0, index + delimiter.length)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy