trimEnd

Common
JVM
JS
Native
1.0
inline fun CharSequence.trimEnd(
    predicate: (Char) -> Boolean
): CharSequence

(source)

Returns a sub sequence of this char sequence having trailing characters matching the predicate removed.

Common
JVM
JS
Native
1.0
inline fun String.trimEnd(
    predicate: (Char) -> Boolean
): String

(source)

Returns a string having trailing characters matching the predicate removed.

Common
JVM
JS
Native
1.0
fun CharSequence.trimEnd(vararg chars: Char): CharSequence
(source)

Returns a sub sequence of this char sequence having trailing characters from the chars array removed.

Common
JVM
JS
Native
1.0
fun String.trimEnd(vararg chars: Char): String
(source)

Returns a string having trailing characters from the chars array removed.

Common
JVM
JS
Native
1.0

Returns a sub sequence of this char sequence having trailing whitespace removed.

Common
JVM
JS
Native
1.0
fun String.trimEnd(): String
(source)

Returns a string having trailing whitespace removed.