fun String.endsWith( suffix: String, ignoreCase: Boolean = false ): Boolean
fun String.endsWith( suffix: String, ignoreCase: Boolean ): Boolean
Returns true
if this string ends with the specified suffix.
fun CharSequence.endsWith( char: Char, ignoreCase: Boolean = false ): Boolean
Returns true
if this char sequence ends with the specified character.
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