/* * Author: Glowbal * Removes whitespace from a string. * * Arguments: * 0: String * * Return Value: * String Without Whitespace * * Example: * _stringWithoutWhitespace = ["String with whitespace"] call ace_common_fnc_stringRemoveWhiteSpace * * Public: Yes */ #include "script_component.hpp" params ["_string"]; (_string splitString " ") joinString ""