Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table plus
applyColStyleToCelltrue
heading0
columnTypess,s,s,s
multiplefalse
columnAttributesstyle="background:#e5e7ea;font-weight:bold,,style="background:#e5e7ea;font-weight:bold,
enableSortingfalse

Syntax

arrayKeys(array)

Package

array

Alias

Pkg Usage

keys(array)

Description

Excerpt
hiddentrue
Returns the keys of the array.

...

String []

Example

Code Block
number  []arr;
arr["one"] = 1;
arr["two"] = 2;
arr["three"] = 3;
arr[3] = 4;

string  [] arrkeys = arrayKeys(arr); // contains strings 'one', 'two', 'three' but not necessary in that order !

...