Lua模式:%b {}?可选的平衡支架

时间:2018-05-14 19:35:58

标签: string lua pattern-matching

我希望有可选的平衡括号作为我的比赛的一部分。只有正常模式才有可能吗? 我的测试代码如下所示:

for m in string.match('str{},str2{str3{}},str4,str5{a{}b{}}', '[^,]-%b{}') do
  print(v)
end

输出是:

str{}
str2{str3{}}
str5{a{}b{}}

缺少的部分是str4

我认为模式[^,]-%b{}?可以做到但是%bxy和?两种模式项目当然都不起作用,但是还有办法吗?

我现在的解决方法是:

local stored
for e in string.gmatch(str, '[^,]+') do
  if stored then
    e = stored .. ',' .. e
  end
  if string.match(e, '^[^{}]+$') or string.match(e, '^[^{}]*%b{}[^{}]*$') then
    print(e)
    stored = nil
  else
    stored = e
  end
end

2 个答案:

答案 0 :(得分:2)

  

%B {}?可选的平衡支架

没有。你需要用逗号分割并处理你这样做的方式。

简化的一种方法可能是首先将([^}]),替换为\1{},,然后在没有任何特殊情况下应用您的处理。

答案 1 :(得分:1)

一种可行的解决方法是用零替换大括号内的逗号(并在逗号分割后恢复它们)。

local str = 'str{},str2{str3{}},str4,str5{a{},b{}}'
for m in str:gsub('%b{}', function(b) return b:gsub(',', '\0') end):gmatch'[^,]+' do
   m = m:gsub('%z', ',')
   print(m)
end

输出:

str{}
str2{str3{}}
str4
str5{a{},b{}}