Notes
In Apex, the deleteWhiteSpace()
method is used to return a version of the current String with all white space characters removed.
Here's an example:
String s1 = ' Hello Jane ';
String s2 = 'HelloJane';
System.assertEquals(s2, s1.deleteWhitespace());
Video
Video does not exists.