要連接和格式化字符串,在Lua中可以使用字符串連接運算符..
和string.format()
函數。
local str1 = "Hello"
local str2 = "World"
local result = str1 .. " " .. str2
print(result) -- 輸出:Hello World
local name = "Alice"
local age = 25
local result = string.format("My name is %s and I am %d years old.", name, age)
print(result) -- 輸出:My name is Alice and I am 25 years old.
在string.format()
中,%s
表示字符串類型,%d
表示整數類型,可以根據需要使用不同的格式化標識符。