a[(id=1+2) and (total=2+2 and name="test")] + b[(count=1+2) and (total=2+2 and name="abc")]
请问正则表达式有可能将其拆分成以下的样子吗?
第一层数组
a[(id=1+2) and (total=2+2 and name="test")]
b[(count=1+2) and (total=2+2 and name="abc")]
第二层
a[(id=1+2)
(total=2+2 and name="test")]
...
第三层
total=2+2
name="test"
...
如果不行,就只能按照indexof来处理了
可以试下正则的平衡组