NextGen Knowledge Center

FORMAT String Function

Use:Formats a specific string
Syntax:
{FORMAT( «string» )}
Arguments:

«string»
    Character string to be formatted, plus the parameters
    {0}first parameter, {1} second parameter, {2} third parameter, and so on
    {n} creates a new line character
    {t} creates a tab character
Returns:A formatted string
Example:

{FORMAT( "{0}{n}{1}", {local.name}, {local.address} )}       
{0} is the first parameter
{n} acts as a new line character
{1} is the second parameter  

Result: John Doe

123 Any Street.