listReplace: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added version.)
No edit summary
Line 23: Line 23:
</source>
</source>
Returns This: is: a: test
Returns This: is: a: test
<source lang="mtmacro" line>
[h: List="This, is, a, great, test"]
[h: List=listReplace(List, 3, "poor")]
[r: List]
</source>
Returns: This, is, a, poor, test
}}
}}
[[Category:String List Function]]
[[Category:String List Function]]

Revision as of 23:13, 29 June 2009

listReplace() Function

Introduced in version 1.3b42
Replaces the element at the specified index of a string list with a new value. If a delimiter is not specified then the default value of ',' is used. The index for lists starts at 0

Usage

listReplace(list, index, value)
listReplace(list, index, value, delim)

Example

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

Returns This, is, a, Test

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

Returns This: is: a: test

[h: List="This, is, a, great, test"]
[h: List=listReplace(List, 3, "poor")]
[r: List]
Returns: This, is, a, poor, test