替换字符串 Lua 上的最后一个逗号
我有这个字符串
Apples, Oranges, Grapes
如何将 最后一个逗号 替换为 and?
还没有学到足够的模式,但我尝试了几种方法,例如
str:gsub(",$", "and", 1)
是否认为魔术字符 $ 从末尾读取字符串 -->开始?
我的问题是因为我使用 table.concat 连接数组
I have this string
Apples, Oranges, Grapes
How can i replace last comma for and?
Havent learn enough of patterns but i've tried several ways such as
str:gsub(",quot;, "and", 1)
Isnt supposed that magic character $ reads string from end --> begin?
My problem becomes because im concatenating an array using table.concat
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的桌子:
方法#1:
使用“and”连接最后一项:
方法#2:
替换最后一个逗号:
Your table:
Method #1:
Concatenate the last item using "and":
Method #2:
Replace the last comma: