The PRINTF function allow to generate a formatted string, analogous to the printf() function in C.
Category
String
Syntax
PRINTF(format [, arg])
Parameter and Description
Parameter | Description |
---|---|
format | A string used as template to generate the result. In that string %s/%S will be substituted by string argument following the format. %% is used to indicate the litteral % in the resulting string. %S automatiacally replace NULL argument with the string NULL, whereas %s fail if the argument provided is NULL. |