endsWith

fun CharSequence.endsWith(char: Char, ignoreCase: Boolean = false): Boolean(source)

Returns true if this char sequence ends with the specified character.


fun CharSequence.endsWith(suffix: CharSequence, ignoreCase: Boolean = false): Boolean(source)

Returns true if this char sequence ends with the specified suffix.


expect fun String.endsWith(suffix: String, ignoreCase: Boolean = false): Boolean(source)
actual fun String.endsWith(suffix: String, ignoreCase: Boolean = false): Boolean(source)

Returns true if this string ends with the specified suffix.

actual fun String.endsWith(suffix: String, ignoreCase: Boolean = false): Boolean

Returns true if this string ends with the specified suffix.

actual fun String.endsWith(suffix: String, ignoreCase: Boolean): Boolean

Returns true if this string ends with the specified suffix.