W3cubDocs

/Kotlin

endsWith

Platform and version requirements: JVM (1.0), JS (1.1)
fun String.endsWith(
    suffix: String, 
    ignoreCase: Boolean = false
): Boolean
Platform and version requirements: Native (1.3)
fun String.endsWith(
    suffix: String, 
    ignoreCase: Boolean
): Boolean

Returns true if this string ends with the specified suffix.

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun CharSequence.endsWith(
    char: Char, 
    ignoreCase: Boolean = false
): Boolean

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

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun CharSequence.endsWith(
    suffix: CharSequence, 
    ignoreCase: Boolean = false
): Boolean

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

© 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/ends-with.html