ACE3/addons/common/functions/fnc_stringRemoveWhiteSpace.sqf

19 lines
284 B
Plaintext
Raw Normal View History

2015-09-19 22:55:58 +00:00
/*
* Author: Glowbal
* Removes white spaces from string
2015-01-16 23:21:47 +00:00
*
2015-09-19 22:55:58 +00:00
* Arguments:
* 0: stringA <STRING>
* 1: stringB <STRING>
*
* Return Value:
* copy of string <STRING>
*
* Public: Yes
2015-01-16 23:21:47 +00:00
*/
#include "script_component.hpp"
2015-09-20 13:52:40 +00:00
params ["_string"];
2015-01-16 23:21:47 +00:00
2015-09-20 13:52:40 +00:00
(_string splitString " ") joinString ""