Exllated Asked:2021-10-19 21:33:57 +0800 CST2021-10-19 21:33:57 +0800 CST 2021-10-19 21:33:57 +0800 CST 如何在 Lua 中制作 / 文本 772 currItemLabel = "Mobius "Unstable**/**Stable" Ingot" Lua检测到字符/不是文本,我该如何解决这个问题? 提前致谢! lua 1 个回答 Voted Best Answer Alexander Mashin 2021-10-20T00:00:41+08:002021-10-20T00:00:41+08:00 您的代码,如果您正确复制它,应该会导致语法错误。 如果要在字符串文字中使用双引号,请将其括在单引号中: currItemLabel = 'Mobius "Unstable**/**Stable" Ingot' 或使用多行语法: currItemLabel = [[Mobius "Unstable**/**Stable" Ingot]] 或转义双引号: local currItemLabel = "Mobius \"Unstable**/**Stable\" Ingot"
您的代码,如果您正确复制它,应该会导致语法错误。
如果要在字符串文字中使用双引号,请将其括在单引号中:
或使用多行语法:
或转义双引号: