Notes
In Apex, the capitalize()
method is a string method that returns the current String with the first letter changed to title case.
Here's an example:
String originalString = 'john';
String capitalizedString = originalString.capitalize();
Output: John
Video
Video does not exists.