为什么我的正则表达式不匹配括号?

时间:2018-10-08 09:54:22

标签: regex erlang

我希望字符串包含字符串中的所有括号对。这是我尝试过的:

{match, Strings} = re:run("()", "(\(\))", [global, {capture, first, list}]),  

它返回:

[[[]],[[]],[[]]]

为什么不返回

[["()"]]

0 个答案:

没有答案