String replaced(String key, String new, String str, [ReplaceFlags] fl=createArray(1), [REFlags] mfl=createArray(1))
Arguments
key: A pattern stringnew: 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.mfl: A list of REFlags options for compiling the pattern. Ths 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