2015-09-19 22:55:58 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
2016-08-08 21:08:39 +00:00
|
|
|
* Removes whitespace from a string.
|
2015-01-16 23:21:47 +00:00
|
|
|
*
|
2015-09-19 22:55:58 +00:00
|
|
|
* Arguments:
|
2016-08-08 21:08:39 +00:00
|
|
|
* 0: String <STRING>
|
2015-09-19 22:55:58 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2016-08-08 21:08:39 +00:00
|
|
|
* String Without Whitespace <STRING>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* _stringWithoutWhitespace = ["String with whitespace"] call ace_common_fnc_stringRemoveWhiteSpace
|
2015-09-19 22:55:58 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2016-09-30 13:51:03 +00:00
|
|
|
ACE_DEPRECATED(QFUNC(stringRemoveWhiteSpace),"3.10.0","CBA_fnc_removeWhitespace");
|
|
|
|
|
2015-09-20 13:52:40 +00:00
|
|
|
(_string splitString " ") joinString ""
|