Most array functions are supported; some (such as value)
were obsoleted by new parser and are not available. The only difference is that their names
are preceeded by array_ instead of @Array.
Warning
Due to parser limitation, name of array has to be specified as string now; for example
array_count("MyArray").- array_clear(array) - removes all elements from array
- array_count(array) - returns number of elements in array
- array_keys(array) - returns string containing EOL-separated keys of array - note that if you had imported a scalar (keys without values) into an array with Kommander you would not be able to access it with array_values("myarray") as you might think (since it seems to only have values) but would instead need to use array_keys() You might find a better choice for this is to use the new indexed arrays described below.
- array_values(array) - returns string containing EOL-separated values of array
- array_tostring(array) - returns string containing whole array
as EOL-separated pairs containing key and value separated with TAB character
- array_fromstring(array, string) - reads array from string (usually provided by array_tostring function)
- array_remove(array, key) - removes item with key
key from array
New in Kommander 1.3