<<dequote>>

The <<dequote...>> function, by default, removes any double-quote characters from a given string. It contains three optional named parameters, however, that significantly alter and enhance this functionality. First, by including the quote parameter, you can specify a different character to be removed form the given string or strings.

Second, the replace parameter can specify the character you wish to replace the quote character with. Finally, the join parameter allows you to specify the character used to join multiple string arguments to the function together.

Arguments

<<dequote stringArg1 [stringArgN] [quote=quoteChar] [replace=repChar] [join=joinString]>>
stringArg1
This argument contains the string to be “dequoted.” May be a hard coded value, a data tag, or the return value of another function call.
stringArgN
Additional, optional argument(s) to be dequoted, and joined together with the previous arguments.

Parameters