ListChangedelims()

Converts the given list delimitor to the new one

Usage

STRING = ListChangedelims( list, newDel, oldDel )
Argument Summary
list list
newDel new delimiter
oldDel old delimiter - default comma (,) [optional]

Calling

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

ListChangedelims(
   list=?, 
   newDel=?, 
   oldDel=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListChangedelims( ArgumentCollection={
   list : ?, 
   newDel : ?, 
   oldDel : ?
} );