Trims white-space (space, tab, newline) from the both ends of a string.
See CBA_fnc_leftTrim and CBA_fnc_rightTrim.
_string | String to trim [String] |
Trimmed string [String]
_result = [" frogs are fishy "] call CBA_fnc_trim; // _result => "frogs are fishy"
Spooner