listRemove function

Syntax

  • string listRemove(stringList, searchString)

Parameters

  1. stringListstring
  2. searchStringstring

Returns

Removes first occurrence of searchString from stringList.

Description

The listRemove function removes the first occurrence of searchString from the stringList. Optional: leading or trailing * in searchString are used as wildcard.

Note:

Stringlists are a series of strings stored inside one string. The elements are separated by a semicolon (";"). Each item must be followed by a semicolon, also the last one! The data type is "string", thus it is not an array as used in other scripting languages.

Related

Examples

example.1
    listRemove("rule;your;city;","your")
    # result = "rule;city;"

example.2
    listRemove("rule;your;city;","*u*")
    # result = "your;city;"

example.3
    listRemove("floor_1;floor_2;floor_3;", "*_2")
    # result = "floor_1;floor_3;"

In this topic