%FORMAT()% function
Create Another character string with formatting integer values and character string values.
C言語のprintf()関数に似た機能を提供します。
Return valuevalue type 
1st arg.character string typeGenerally, character string contains format flag.
2nd arg...character string type, integer type. function will decide with format flags.Please make sure, argument types are corresponding to 1st arguents format flags.
This function is valid for request parameter name, request parameter value, CSV column name, CSV column value and success string at prologue, CSV upload, epilogue.
Supported format flags are much les than printf() of C language. Followings are the format flags.
flagsvalue typesetc.
%dintger type%2d puts space character to top of result if argument is less than 2 digits, %02d puts 0 character to top of result if argument is less than 2 digits.
%scharacter string value%2s puts space character to top of result if argument is less than 2 byte length.
For example if the function invoked at UTC time of 2010-10-3 20:36:14.89,
%FORMAT(%02d - %s_%s, 1, %CURRENTDATE%, %CURRENTTIME%)%
The result is,
01 - 2010-10-03_20:36:14.089