endsWith
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.