BIS fnc ordinalNumber: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "\[\[Category\:Function Group\: Strings(\|\{\{[a-zA-Z0-9_:]+\}\})?\]\]" to "") |
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
||
Line 1: | Line 1: | ||
{{Function|Comments= | {{Function|Comments= | ||
| arma3 |Game name= | | arma3 |Game name= | ||
Line 7: | Line 6: | ||
|gr1 = Strings |GROUP1= | |gr1 = Strings |GROUP1= | ||
| Return number as ordinal number (e.g. 1 become "1st") |DESCRIPTION= | | Return number as ordinal number (e.g. 1 become "1st") |DESCRIPTION= | ||
| [number, language, isFeminine] call [[BIS_fnc_ordinalNumber]] |SYNTAX= | | [number, language, isFeminine] call [[BIS_fnc_ordinalNumber]] |SYNTAX= | ||
Line 21: | Line 18: | ||
| [[String]] |RETURNVALUE= | | [[String]] |RETURNVALUE= | ||
|x1= <code>_second = [42] [[call]] [[BIS_fnc_ordinalNumber]]; {{codecomment|// will return "42nd" for English-speaking players}}</code> |EXAMPLE1= | |x1= <code>_second = [42] [[call]] [[BIS_fnc_ordinalNumber]]; {{codecomment|// will return "42nd" for English-speaking players}}</code> |EXAMPLE1= | ||
Line 38: | Line 34: | ||
|x4= <code>_second = [1, "unknownLanguage"] [[call]] [[BIS_fnc_ordinalNumber]]; {{codecomment|// will return "1." if language is not recognised/supported}}</code> |EXAMPLE4= | |x4= <code>_second = [1, "unknownLanguage"] [[call]] [[BIS_fnc_ordinalNumber]]; {{codecomment|// will return "1." if language is not recognised/supported}}</code> |EXAMPLE4= | ||
| [[language]] |SEEALSO= | | [[language]] |SEEALSO= |
Revision as of 23:55, 16 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