Notes
In Apex, the equalsIgnoreCase()
method is used to return true if both strings has the same sequence of characters as the given string. However, this method is not case-sensitive.
Here's an example:
String myStr = 'I am learning Apex';
Boolean result = myStr.equalsIgnoreCase('I AM LEARNING APEX');
System.debug(result);
Output: true
Video
Video does not exists.