Consider:
object HelloWorld {
  def main(args: Array[String]): Unit = {
    val s:String = "AbcD"
    println(s.contains("ABCD"))
    println(s.contains("AbcD"))
  }
}
Output:
false
true
I need the result to be true in both cases regardless of the case. Is it possible?