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.
Comma-delimited list of substrings to be replaced.
list2
Comma-delimited list of replace substrings.
Usage
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 list1elements is contained in list2elements. The second example listed below demonstrates such replacement.