expandlist
Syntax: %expandlist(list,delim)
Reformats the given list and replaces the normal | delimiter with the delim string given.
Examples:
List="a|b|c"
#SHOW %expandlist(@List," ")
displays: "a b c"
#SHOW %expandlist(@List," , ")
displays: "a , b , c" |