Removes whitespace (space, tab, newline) from string.
_string | Any String STRING |
_seperate | Seperate leftovers with spaces? (optional, default: false) <BOOLEAN> |
String without whitespace STRING
" foo bar " call CBA_fnc_removeWhitespace; // "foobar" [" foo bar ", true] call CBA_fnc_removeWhitespace; // "foo bar"
commy2