ends With
fun CharSequence.endsWith(char: Char, ignoreCase: Boolean = false): Boolean
Content copied to clipboard
Returns true
if this char sequence ends with the specified character.
fun CharSequence.endsWith(suffix: CharSequence, ignoreCase: Boolean = false): Boolean
Content copied to clipboard
Returns true
if this char sequence ends with the specified suffix.
actual fun String.endsWith(suffix: String, ignoreCase: Boolean = false): Boolean
Content copied to clipboard
Returns true
if this string ends with the specified suffix.