toArray: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Add Syntax 2 example thanks to killerswin2 on Discord) |
Lou Montana (talk | contribs) m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *S([a-z ])" to "$1 - s$2") |
||
(2 intermediate revisions by the same user not shown) | |||
Line 35: | Line 35: | ||
|p21= hashMap: [[HashMap]] | |p21= hashMap: [[HashMap]] | ||
|r2= [[Array]] - | |r2= [[Array]] - array in format <nowiki>[</nowiki>[key, key, ...], [value, value, ...]] | ||
|s3= hashMap [[toArray]] splitArrays | |s3= hashMap [[toArray]] splitArrays | ||
Line 43: | Line 43: | ||
|p41= hashMap: [[HashMap]] | |p41= hashMap: [[HashMap]] | ||
|p42= splitArrays: [[Boolean]] - | |p42= splitArrays: [[Boolean]] - see return value | ||
|r3= [[Array]] - | |r3= [[Array]] - array in either one of the following formats: | ||
* splitArrays: [[true]] - {{hl|[<nowiki/>[key1, key2, ...], [value1, value2, ...]]}} | * splitArrays: [[true]] - {{hl|[<nowiki/>[key1, key2, ...], [value1, value2, ...]]}} | ||
* splitArrays: [[false]] - {{hl|[<nowiki/>[key1, value1], [key2, value2], ...]}} This is '''very inefficient''' since the engine has to create many small arrays | * splitArrays: [[false]] - {{hl|[<nowiki/>[key1, value1], [key2, value2], ...]}} This is '''very inefficient''' since the engine has to create many small arrays |
Latest revision as of 15:49, 8 November 2023
Description
- Description:
- Converts the supplied String into an Array of Numbers. The numbers in the created array are the decimal Unicode representations of characters.
- Groups:
- ArraysHashMapStrings
Syntax 1
Syntax 2
- Syntax:
- toArray hashMap
- Parameters:
- hashMap: HashMap
- Return Value:
- Array - array in format [[key, key, ...], [value, value, ...]]
Syntax 3
- Syntax:
- hashMap toArray splitArrays
- Parameters:
- hashMap: HashMap
- splitArrays: Boolean - see return value
- Return Value:
- Array - array in either one of the following formats:
Examples
- Example 1:
- Example 2:
- Example 3:
- private _hashmap = ["cow", "cat", "chicken"] createHashMapFromArray [10000, 20000, 20000]; _hashmap toArray true; // returns [["cow", "cat", "chicken"], [10000, 20000, 20000]] - same as Syntax 2 _hashmap toArray false; // returns [["cow", 10000], ["cat", 20000], ["chicken", 20000]]
Additional Information
- See also:
- set resize reverse select in find toString count deleteAt splitString joinString toUpperANSIUnicode Character Table
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
Categories:
- Scripting Commands
- Introduced with Armed Assault version 1.09
- ArmA: Armed Assault: New Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Arrays
- Command Group: HashMap
- Command Group: Strings