dataFormat


Any valid .NET format mask for that associated data type. See the References on the Format Mask worksheet, or consult the .NET documentation for valid date, number, and string format masks.

The following masks are special masks for "string" that can be used for additional formatting.
lowercase - convert to lowercase
uppercase - convert to uppercase
titlecase - capitalize the first character of each word.
padleft - pad left with the specified char. E.g. to pad to 10 chars with an *: padleft:10:*
padright – pad right with the specified char.E.g. padright:10:*

The following masks are special masks for “string” that can be used to cleanse / remove unwanted characters:
alpha - removes all characters except a-z
numeric – removes all characters except 0-9
alphanumeric - removes all characters except a-z and 0-9
regexcleanse – removes all characters matched by the expression. E.g.: regexcleanse [^1-5a-3]

Note: multiple masks can be applied to a single token by combining the masks with a comma. E.g.:

$$CONTAINER.name|string|uppercase,alpha$$