string.listRest()
Gets a list, without its first element.
string.listRest( delimiters=string, includeEmptyFields=boolean, offset=number )
Returns: String
| Argument | Description |
|---|---|
|
delimiters
string,
optional
|
edit
Characters that separate list elements. The default value is comma. Alias: delimiter |
|
includeEmptyFields
boolean,
optional
|
edit
if set to true, empty values are included as well |
|
offset
number,
optional
|
edit
specifies how many items to skip from the beginning of the list. default is 1. |
Examples
edit strList="0,1,2,3,4";
writeDump(strlist.listRest());