FUNCTION sprintf( fmt: String, value: Object... ): String
Given a format string and an array of parameters, format the string and return the result.
fmt | the format string |
value | the values to format |
The available formatting codes are
#d | decimal number |
#s | string |
Given a format string and an array of parameters, format the string and return the result.
FUNCTION sprintf( fmt: String, value: Object... ): String
Given a format string and an array of parameters, format the string and print the result.
FUNCTION printf( fmt: String, value: Object... )