string.replaceList()
Replaces occurrences of the elements from a delimited list in a string, with corresponding elements from another delimited list.
The search is case-sensitive.
string.replaceList( list1=string, list2=string, delimiter_list1=string, delimiter_list2=string, includeEmptyFields=boolean )
Returns: String
Examples
fruits = "apple,mango-papaya,lemon,grapes,mango-Apple,Mango-apple,mango";
res = fruits.replacelist("mango-papaya","Mango-Apple");
writeDump(res);
res = fruits.replacelist("apple","Mango@Apple");
writeDump(res);
res = fruits.replacelist("mango-papaya","Mango@Apple","@","-");
writeDump(res);