deleteStrProp

From RPTools Wiki
Jump to navigation Jump to search

deleteStrProp() Function

Introduced in version 1.3b42
Returns a copy of the string property list with the specified key removed.

Usage

deleteStrProp(proplist, key)
deleteStrProp(proplist, key, delim)

Parameters

  • proplist - String property list to extract data from.
  • key - Key within string to extract. This cannot include a space.
  • delim - Delimiter between fields (default is ";").

Example

[r: deleteStrProp("a=blah; b=doh; c=meh", "a")]
Returns "b=doh; c=meh".