endsWith

Common
JVM
JS
Native
1.0
fun String . endsWith (
suffix : String ,
ignoreCase : Boolean = false
) : Boolean

(Common source) (JVM source) (JS source) (Native source)

Returns true if this string ends with the specified suffix.

Common
JVM
JS
Native
1.0
fun CharSequence . endsWith (
char : Char ,
ignoreCase : Boolean = false
) : Boolean

(source)

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

Common
JVM
JS
Native
1.0
fun CharSequence . endsWith (
suffix : CharSequence ,
ignoreCase : Boolean = false
) : Boolean

(source)

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