string remove spaces - part-cw/lambdanative GitHub Wiki

(string-remove-spaces str)

string-remove-spaces removes all spaces from string.

Parameter Description
str Input string

Example

Example 1: Trim a string

> (string-remove-spaces "This String Had Spaces")
"ThisStringHadSpaces"