BIS_fnc_numberDigits

From Bohemia Interactive Community
Revision as of 12:35, 23 January 2021 by Lou Montana (talk | contribs) (Text replacement - "{{Function " to "{{RV|type=function ")
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Description needed
Execution:
call
Groups:
ArraysStrings

Syntax

Syntax:
Syntax needed
Parameters:
number: Number - Number that should be broken down. A float will be truncated, not rounded
Return Value:
Return value needed

Examples

Example 1:
12345678 call BIS_fnc_numberDigits; // returns [1,2,3,4,5,6,7,8]
Example 2:
123.9999 call BIS_fnc_numberDigits; // returns [1,2,3]

Additional Information

See also:
See also needed

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Posted on March 20, 2018 - 21:25 (UTC)
vabene1111
Use this function with caution: Numbers with more than 8 digits will return wrong results [11111111] call BIS_fnc_numberDigits; // returns [1,1,1,1,1,1,1,1] [111111111] call BIS_fnc_numberDigits; // returns [1,1,1,1,1,1,1,1,2] [1111111111111] call BIS_fnc_numberDigits; // returns [1,1,1,1,1,1,1,1,0,6,5,6,0]