ReplaceList()

Peforms a series of search'n'replace on a single string using the comma-separated lists passed in

Usage

STRING = ReplaceList( string, listsub, listnew )
Argument Summary
string string
listsub list of sub-strings
listnew list of new substring

Calling

Supports named-parameter calling allowing you to use the function like:

ReplaceList(
   string=?, 
   listsub=?, 
   listnew=?
);

Supports passing parameters as a structure using ArgumentCollection:

ReplaceList( ArgumentCollection={
   string : ?, 
   listsub : ?, 
   listnew : ?
} );