RPTools

Personal tools
From MapToolDoc

listDelete

listDelete() Function

Introduced in version 1.3b42

Returns a string list with the specified item deleted from it. The index for the string list

Usage

  1. listDelete(list, index)
  1. listDelete(list, index, delim)

If delim is not specified then the default value of ',' is used as the value separator in the string list

Example

  1. [r: listDelete("This, is, a, test", 1)]

Returns This, a, test