listDelete: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(New page: ==Function listDelete== Returns a string list with the specified item deleted from it. The index for the Macros:string list ===Usage=== <source lang="mtmacro...)
 
Line 5: Line 5:
===Usage===
===Usage===
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[h: list = listDelte(list, index)]
[h: list = listDelete(list, index)]
[h: list = listCount(list, index, delim)]
[h: list = listDelete(list, index, delim)]
</source>
</source>



Revision as of 16:26, 6 December 2008

Function listDelete

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

Usage

[h: list = listDelete(list, index)]
[h: list = 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

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

Returns This, a, test