Format strings in Lua
string.format() to format variables into strings.
Format strings are normal strings that include % then a character denoting the type of value.
%dfor a decimal number%xfor hexadecimal%ofor octal%ffor a floating-point number%sfor strings
