ACE3/addons/common/functions/fnc_toNumber.sqf

25 lines
452 B
Plaintext
Raw Normal View History

/*
2015-01-11 18:20:14 +00:00
Name: FUNC(toNumber)
Author(s):
Garth de Wet (LH)
Description:
Takes a string/number and returns the number.
Parameters:
0: TYPE - Value to attempt to convert to number or if number simply return number.
Returns:
NUMBER
Example:
2015-05-14 22:12:40 +00:00
number = ["102"] call FUNC(toNumber);
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
if (typeName (_this select 0) == "SCALAR") exitWith {
2015-05-14 18:06:06 +00:00
(_this select 0)
};
(parseNumber (_this select 0))