| Top | Previous | Next |
|
Strings / stringFormat |
|
stringFormat(format, args...) Returns a formatted string using the specified format string and arguments.
See String.format(java.lang.String, java.lang.Object...) for more information.
formatString("Hello %s", "world") ... returns "Hello word"
formatString("%s, %s, %s", 1, 2, 3) ... returns "1, 2, 3" |