Notes
In Apex, the containsIgnoreCase()
method is used to return true if the current String contains the specified sequence of characters without regard to case; otherwise, returns false.
Here's an example for true:
String s = 'hello';
Boolean b = s.containsIgnoreCase('HE');
System.debug(b);
Output: true
Video
Video does not exists.