gpt4 book ai didi

lua string.gsub ('The farmer said "这个世界真棒 !",' "','\"' )

转载 作者:行者123 更新时间:2023-12-04 20:44:59 25 4
gpt4 key购买 nike

我正在寻找可以用\"替换字符串中每个引号的东西。

我试过这个:

local te = 'Press "start" to begin!'
te = string.gsub(te,'"','\")
print(te)

我希望它打印 `Press\"start\"to begin!但它只打印普通字符串。

没有错误信息。

感谢任何能提供帮助的人!

最佳答案

你需要转义\,像这样:

te = string.gsub(te,'"','\\"')

这是因为 \" 简单地转义了 " 并且 \ 不会出现在字符串中,如果你这样做 \\" 您正在转义要添加的 \ 导致

Press \"start\" to begin!

local te = 'Press "start" to begin!'
te = string.gsub(te,'"','\\"')
print(te)

关于lua string.gsub ('The farmer said "这个世界真棒 !",' "','\"' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57210346/

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