makenumberedarray
ARRAY
,
SEPARATOR
,
START
,
END

The makenumberedarray statement generates a numeric sequenced text array.


Parameters

This statement has four parameters:

array – the field or variable where the generated array will be placed.

separator – the separator character.

start – the starting number of the sequence (must be an integer).

end – the ending number of the sequence (must be an integer that is larger than the start value).


Description

This function generates a numeric sequenced array. This example will fill the variable numbers with the sequence 1,2,3.

local numbers
makenumberedarray numbers,",",1,3

This example will fill the variable numbers with the sequence 8,9,10,11,12,13,14,15.

local numbers
makenumberedarray numbers,",",8,15)

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.