mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
284 B
Plaintext
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 ""
|