inline fun CharSequence.trimEnd( predicate: (Char) -> Boolean ): CharSequence
Returns a sub sequence of this char sequence having trailing characters matching the predicate removed.
inline fun String.trimEnd( predicate: (Char) -> Boolean ): String
Returns a string having trailing characters matching the predicate removed.
fun CharSequence.trimEnd(vararg chars: Char): CharSequence
Returns a sub sequence of this char sequence having trailing characters from the chars array removed.
fun String.trimEnd(vararg chars: Char): String
Returns a string having trailing characters from the chars array removed.
fun CharSequence.trimEnd(): CharSequence
Returns a sub sequence of this char sequence having trailing whitespace removed.
fun String.trimEnd(): String
Returns a string having trailing whitespace removed.
© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/trim-end.html