BIS fnc parseNumberSafe: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (page filled)
m (Some wiki formatting)
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Function
{{RV|type=function


|game1= arma3
|game1= arma3
|version1= 1.96


|version1= 1.95
|gr1= Arrays


<!--|serverExec= server-->
|descr= Converts expression into a number. Can also convert array of expressions into an array of numbers. If expression does not return a number, 0 is returned.


<!--|arg= local-->
|s1= [input] call [[BIS_fnc_parseNumberSafe]]


<!--|eff= local-->
|p1= input: [[Number]], [[String]], [[Array]], [[Side]], [[Config]] or [[Array]] - If type is array, array may contain any of the mentioned data types


|descr= Converts expression into a number (or array of expressions into an array of numbers).<br>
|r1= [[Number]] or [[Array|array]] of [[Number|numbers]] if [[Array|array]] is passed as an argument
If expression does not return a number, 0 is returned.


|s1= [input] call [[BIS_fnc_parseNumberSafe]]|=Syntax
|x1= <sqf>[safeZoneX, safeZoneWAbs, configFile] call BIS_fnc_parseNumberSafe; // returns [-0.452381,1.90476,0]</sqf>


|p1= input: [[Number]], [[String]], [[Array]], [[Side]], [[Config]] or [[Array]] of those data types
|x2= <sqf>["1337", "2013", date] call BIS_fnc_parseNumberSafe; // returns [1337,2013,[2036,1,1,6,58]]</sqf>


|r1= [[Number]] or [[Array|array]] of [[Number|numbers]] if [[Array|array]] is passed as an argument|Return value=
|x3= <sqf>[west, east, independent, civilian] call BIS_fnc_parseNumberSafe; // returns [1,0,2,3]</sqf>
 
|x1= <code><nowiki>[</nowiki>[[safeZoneX]],[[safeZoneWAbs]],[[configFile]]<nowiki>]</nowiki> [[call]] [[BIS_fnc_parseNumberSafe]];{{cc|Returns [-0.452381,1.90476,0]}}</code>|Example 1=
|x2= <code>["1337","2013",[[date]]] [[call]] [[BIS_fnc_parseNumberSafe]];{{cc|Returns [1337,2013,[2036,1,1,6,58]]}}</code>|Example 2=
|x3= <code><nowiki>[</nowiki>[[west]],[[east]],[[independent]],[[civilian]]] [[call]] [[BIS_fnc_parseNumberSafe]];{{cc|Returns [1,0,2,3]}}</code>|Example 3=
 
|exec= call |Execution=


|seealso= [[parseNumber]] [[BIS_fnc_parseNumber]]
|seealso= [[parseNumber]] [[BIS_fnc_parseNumber]]
}}
}}
[[Category:Function Group: Numbers|{{uc:parseNumberSafe}}]]
[[Category:Functions|{{uc:parseNumberSafe}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:parseNumberSafe}}]]

Revision as of 16:16, 3 May 2022

Hover & click on the images for description

Description

Description:
Converts expression into a number. Can also convert array of expressions into an array of numbers. If expression does not return a number, 0 is returned.
Execution:
call
Groups:
Arrays

Syntax

Syntax:
[input] call BIS_fnc_parseNumberSafe
Parameters:
input: Number, String, Array, Side, Config or Array - If type is array, array may contain any of the mentioned data types
Return Value:
Number or array of numbers if array is passed as an argument

Examples

Example 1:
[safeZoneX, safeZoneWAbs, configFile] call BIS_fnc_parseNumberSafe; // returns [-0.452381,1.90476,0]
Example 2:
["1337", "2013", date] call BIS_fnc_parseNumberSafe; // returns [1337,2013,[2036,1,1,6,58]]
Example 3:
[west, east, independent, civilian] call BIS_fnc_parseNumberSafe; // returns [1,0,2,3]

Additional Information

See also:
parseNumber BIS_fnc_parseNumber

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