ACE3/addons/common/functions/fnc_stringRemoveWhiteSpace.sqf

23 lines
471 B
Plaintext
Raw Normal View History

2015-09-19 22:55:58 +00:00
/*
* Author: Glowbal
* Removes whitespace from a string.
2015-01-16 23:21:47 +00:00
*
2015-09-19 22:55:58 +00:00
* Arguments:
* 0: String <STRING>
2015-09-19 22:55:58 +00:00
*
* Return Value:
* 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
ACE_DEPRECATED(QFUNC(stringRemoveWhiteSpace),"3.10.0","CBA_fnc_removeWhitespace");
2015-09-20 13:52:40 +00:00
(_string splitString " ") joinString ""