ACE3/addons/common/functions/fnc_stringRemoveWhiteSpace.sqf
2015-09-20 15:52:40 +02:00

19 lines
284 B
Plaintext

/*
* Author: Glowbal
* Removes white spaces from string
*
* Arguments:
* 0: stringA <STRING>
* 1: stringB <STRING>
*
* Return Value:
* copy of string <STRING>
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_string"];
(_string splitString " ") joinString ""