Consider:
public static void main(String[] args) {
String s = "AbcD";
System.out.println(s.contains("ABCD"));
System.out.println(s.contains("AbcD"));
}
Output:
false
true
I need the result to be true in both cases regardless of the case. Is it possible?