ListCompact()

Returns back a new list, with all the empty items removed from the start and end of the list

Usage

STRING = ListCompact( list, delimiter )
Argument Summary
list list
delimiter delimiter - default comma (,) [optional]

Calling

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

ListCompact(
   list=?, 
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListCompact( ArgumentCollection={
   list : ?, 
   delimiter : ?
} );