toArray: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[ *(https?:\/\/[^ = ]+) +([^= ]+) *\]" to "{{Link|$1|$2}}")
(Add Syntax 2 example thanks to killerswin2 on Discord)
Line 52: Line 52:


|x2= <sqf>toArray _hashMap params ["_keys", "_values"];</sqf>
|x2= <sqf>toArray _hashMap params ["_keys", "_values"];</sqf>
|x3= <sqf>
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]]
</sqf>


|seealso= [[set]] [[resize]] [[reverse]] [[select]] [[in]] [[find]] [[toString]] [[count]] [[deleteAt]] [[splitString]] [[joinString]] [[toUpperANSI]], {{Link|http://www.utf8-chartable.de/|Unicode Character Table}}
|seealso= [[set]] [[resize]] [[reverse]] [[select]] [[in]] [[find]] [[toString]] [[count]] [[deleteAt]] [[splitString]] [[joinString]] [[toUpperANSI]], {{Link|http://www.utf8-chartable.de/|Unicode Character Table}}
}}
}}

Revision as of 20:41, 5 July 2023

Hover & click on the images for description

Description

Description:
Converts the supplied String into an Array of Numbers. The numbers in the created array are the decimal Unicode representations of characters.
Arma 3
Since v2.04 this command can also handle HashMaps. See alternative syntax.
Groups:
ArraysHashMapStrings

Syntax 1

Syntax:
toArray string
Parameters:
string: String
Return Value:
Array

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:
  • splitArrays: true - [[key1, key2, ...], [value1, value2, ...]]
  • splitArrays: false - [[key1, value1], [key2, value2], ...] This is very inefficient since the engine has to create many small arrays

Examples

Example 1:
hint format ["%1", toArray "AaŒ"];// Returns "[65,97,338]"
Example 2:
toArray _hashMap params ["_keys", "_values"];
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