String RemoveWhitespace Example

The following example removes all whitespace from specified string.

Smartsite SXML CopyCode image Copy Code
{string.removewhitespace('a b    c  ')}
Example Result CopyCode image Copy Code
abc
SXML