Notes
In Apex, the contains()
method is a string method returns true if the given string contains the substring mentioned.
Here's an example:
String sentence = 'Salesforce is a powerful CRM platform.';
Boolean containsCRM = sentence.contains('CRM');
System.debug(containsCRM);
Output: true
Video
Video does not exists.