The string in Lua is a constant. The String.sub function and other string manipulation functions in Lua will not change the value of the string, but return a new string.
l= " ".. 123
Converts a number into a string.
l = string.format("FFF%dXXX ", 123)
Numbers are inserted into strings.