RPTools

Personal tools
From MapToolDoc

listAppend

listAppend() Function

Introduced in version 1.3b42

Returns a string list with a value appended to the end of the string list.

Usage

  1. listAppend(list, value)
  1. listAppend(list, value, delim)

If delim is not specified then the default value of ',' is used to separate the values in the string list

Examples

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

Returns This, is, a, test

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

Returns This: is: a: test