Concatenation of strings in Lua

后端 未结 4 773
庸人自扰
庸人自扰 2021-01-31 01:10

In many languages you can concatenate strings on variable assignment. I have a scenario, using the Lua programming language, where I need to append the output of a command to a

4条回答
  •  Happy的楠姐
    2021-01-31 02:02

    Strings can be joined together using the concatenation operator ".."

    this is the same for variables I think

提交回复
热议问题