Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

listToString(array, separator, ignoreNullFlag, stringFormat)

ArgumentTypeDescription
arrayArrayList of values
separatorStringString to be used to separate the concatenated strings generated by the function
ignoreNullFlagBooleanFlag to determine whether NULL strings are ignored by the function
(set
. Set to 1 or
0)
0, where 1 is ignore and 0 is include. By default NULL values are included.
stringFormatStringOptional parameter
representing
which applies to dates only. This represents the format to use for each element of the list where the list items are dates.

Examples

listToString(["apple",1,"John",NULL,"dog"])

returns

"apple,1,John,,dog"


listToString(["apple",1,"John",NULL,"dog"],"--")

returns

"apple--1--John----dog"

listToString(["apple",1,"John",NULL,"dog"],"--",1)

returns

"apple--1--John--dog"

listToString([01/09/2010,01/10/2010,NULL,01/11/2010],"--",1,"dd MMM yyyy")

returns

"01 Sep 2010--01 Oct 2010--01 Nov 2010"

See Also