ACE3/addons/common/functions/fnc_numberToString.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

28 lines
579 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Converts a number to a string without losing as much precission as str or format.
*
* Arguments:
* 0: A number <NUMBER>
*
* Return Value:
* The number as string <STRING>
*
* Example:
* [5] call ace_common_fnc_numberToString
*
* Public: Yes
*/
params ["_number"];
private _decimals = str (abs _number mod 1);
_decimals = toArray _decimals;
_decimals deleteAt 0;
if (_number < 0) exitWith {
format ["-%1%2", floor abs _number, toString _decimals];
};
format ["%1%2", floor _number, toString _decimals];