Lua中怎么拼接字符串

avatar
作者
筋斗云
阅读量:0

在Lua中,可以使用..操作符来拼接字符串。例如:

local str1 = "Hello" local str2 = "World" local result = str1 .. " " .. str2 print(result) -- Output: Hello World 

另外,也可以使用string.format函数来格式化字符串,然后再拼接。例如:

local name = "Alice" local age = 30 local result = string.format("My name is %s and I am %d years old.", name, age) print(result) -- Output: My name is Alice and I am 30 years old. 

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!