| Generates a formatted text string given a source string containing
"argument markers" of the form "{argNum}" where each argNum must be in
the range 0..9. The result is generated by inserting the toString of each
argument into the position indicated in the string.
To insert the "{" character into the output, use a single backslash
character to escape it (i.e. "\{"). The "}" character does not need to be
escaped.
Parameters: format - String the format to use when printing. Parameters: args - Object[] the arguments to use. String the formatted message. |