StrFormat(formatstring, e1, e2, ...)
or
string.format(formatstring, e1, e2, ...)
Creates a formatted string from the format and arguments provided. This is similar to the printf("format",...) function in C. An additional option %q puts quotes around a string.
string.format(formatstring, e1, e2, ...)
|