fun Char.equals( other: Char, ignoreCase: Boolean = false ): Boolean
Returns true if this character is equal to the other character, optionally ignoring character case.
ignoreCase -
true to ignore character case when comparing characters. By default false.
Two characters are considered the same ignoring case if at least one of the following is true:
fun String?.equals( other: String?, ignoreCase: Boolean = false ): Boolean
Returns true if this string is equal to other, optionally ignoring character case.
ignoreCase - true to ignore character case when comparing strings. By default false.
© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/equals.html