ReplaceList(string, list1, list2)
Returns string with all occurrences of the elements from the specified comma-delimited list being replaced with their corresponding elements from another comma-delimited list. The search is case sensitive.
See also Find, Replace, and REReplace.
Any string.
Comma-delimited list of substrings to be replaced.
Comma-delimited list of replace substrings.
Note that the list of substrings to be replaced is processed one after another. In this way you may experience recursive replacement if one of your list1 elements is contained in list2 elements. The second example listed below demonstrates such replacement.