替换字符串 Lua 上的最后一个逗号

发布于 2025-01-10 01:20:07 字数 312 浏览 0 评论 0原文

我有这个字符串

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

土豪 2025-01-17 01:20:07

你的桌子:

local t = {"Apples", "Oranges", "Grapes"}

方法#1:
使用“and”连接最后一项:

local s = #t > 1 
          and table.concat(t, ", ", 1, #t-1).." and "..t[#t] 
          or  table.concat(t, ", ")
print(s)  --> Apples, Oranges and Grapes

方法#2:
替换最后一个逗号:

local s = table.concat(t, ", ")
s = s:gsub("(.*),", "%1 and")
print(s)  --> Apples, Oranges and Grapes

Your table:

local t = {"Apples", "Oranges", "Grapes"}

Method #1:
Concatenate the last item using "and":

local s = #t > 1 
          and table.concat(t, ", ", 1, #t-1).." and "..t[#t] 
          or  table.concat(t, ", ")
print(s)  --> Apples, Oranges and Grapes

Method #2:
Replace the last comma:

local s = table.concat(t, ", ")
s = s:gsub("(.*),", "%1 and")
print(s)  --> Apples, Oranges and Grapes
烟─花易冷 2025-01-17 01:20:07
local str = "Apples, Oranges, Grapes"
print(str:gsub(",(%s+%w+)
quot;, " and%1"))
local str = "Apples, Oranges, Grapes"
print(str:gsub(",(%s+%w+)
quot;, " and%1"))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文