arraylefttrim(
ARRAY
,
COUNT
,
SEPARATOR
)

The arraylefttrim( function removes one or more elements from the beginning of an array.


Parameters

This function has three parameters:

array – the original text array (see Text Arrays).

count – the number of items to remove from the beginning of the array.

separator – the separator character for this array.


Description

This function removes one or more elements from the beginning of an array. For example arraylefttrim(text,2,",") removes the first two elements from a comma separated array.

arraylefttrim("red;green;blue;yellow;orange",1,";") ☞ green;blue;yellow;orange
arraylefttrim("red;green;blue;yellow;orange",2,";") ☞ blue;yellow;orange
arraylefttrim("red;green;blue;yellow;orange",3,";") ☞ yellow;orange

See Text Arrays for more information about arrays.

Note: This function is equivalent to:

arrayrange(thetext,count+1,9999,sep)

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.