gpt4 book ai didi

lua - 将变量连接成文字字符串

转载 作者:行者123 更新时间:2023-12-04 10:51:47 26 4
gpt4 key购买 nike

我试图纯粹出于可读性目的将变量连接成文字字符串,例如

myString = "test"
myString2 = [[
first part of the string
this is a " .. myString .. " string
last part of the string]]
print(myString2)

但这从字面上输出
first part of the string
this is a " .. myString .. " string
last part of the string

我确定这很简单,但我已经尝试使用谷歌搜索来找出如何实现这一目标,但结果却是空白。

最佳答案

双括号分隔符内的引号没有做任何事情。结束双括号的唯一方法是使用双括号:

myString2 = [[
first part of the string
this is a ]] .. myString .. [[ string
last part of the string]]

这会给你:
first part of the string
this is a test string
last part of the string

见: http://www.lua.org/pil/2.4.html

关于lua - 将变量连接成文字字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21582034/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com