replace

From RPTools Wiki
Revision as of 11:28, 10 March 2009 by Verisimilar (talk | contribs) (Added version.)
Jump to navigation Jump to search

replace() Function

Introduced in version 1.3b48
Returns the string with the occurrences of a pattern replaced by the specified value. If the number of times to perform the replacement is not specified then all occurrences of the pattern are replaced. Pattern can be a regular expression.

Usage

replace(str, pattern, value)
replace(str, pattern, value, times)

Example

    [r: replace("This is a test", " ", "-")]
    [r: replace("This is a test", " ", "-", 2)]

Returns

   This-is-a-test
This-is-a test