Void replace(Regex keyre, String new, var String str, [ReplaceFlags] fl=createArray(1))
Arguments
keyre: A compiled regular expressionnew: The string to replace matches withstr: The string to search for matches (will be edited in place).fl: A list of ReplaceFlags options. This parameter may be omitted and defaults to the empty list.
Usage
Replace the first match (or all matches if fl contains
Global)
of key with new in the String str.
new may contain back references into the pattern, $1, $2, etc,
which stand for sub-matches.