BIS fnc ordinalNumber: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "<h3 style="display:none">Bottom Section</h3>" to "") |
Lou Montana (talk | contribs) m (Text replacement - " {2,}\}\}" to " }}") |
||
Line 36: | Line 36: | ||
| [[language]] | | [[language]] | ||
}} | }} | ||
Revision as of 00:25, 19 January 2021
Description
Syntax
- Syntax:
- [number, language, isFeminine] call BIS_fnc_ordinalNumber
- Parameters:
- number: Number
- language: String - (Optional, current game language)
- isFeminine: Boolean - (Optional, default false)
- Return Value:
- String
Examples
- Example 1:
_second = [42] call BIS_fnc_ordinalNumber; // will return "42nd" for English-speaking players
- Example 2:
_num1enm = [1, "English", false] call BIS_fnc_ordinalNumber; // returns "1st" _num1frm = [1, "French", false] call BIS_fnc_ordinalNumber; // returns "1er" _num1frw = [1, "French", true] call BIS_fnc_ordinalNumber; // returns "1re" _num1esm = [1, "Spanish", false] call BIS_fnc_ordinalNumber; // returns "1" _num1esw = [1, "Spanish", true] call BIS_fnc_ordinalNumber; // returns "1*" for Portuguese, Italian and Spanish
- Example 3:
_num1en = [1, "English"] call BIS_fnc_ordinalNumber; // returns "1st" _num1en = [2, "English"] call BIS_fnc_ordinalNumber; // returns "2nd" _num1en = [3, "English"] call BIS_fnc_ordinalNumber; // returns "3rd" _num1en = [4, "English"] call BIS_fnc_ordinalNumber; // returns "4th" _num1en = [9, "English"] call BIS_fnc_ordinalNumber; // returns "9th"
- Example 4:
_second = [1, "unknownLanguage"] call BIS_fnc_ordinalNumber; // will return "1." if language is not recognised/supported
Additional Information
- See also:
- language
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