String replaced(Regex keyre, String new, String str, [ReplaceFlags] fl=createArray(1))
Arguments
keyre: A compiled regular expressionnew: The string to replace matches withstr: The string to search for matches.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. Returns a new string.
str may be a Tainted string. This function will return an untainted string