具有递归支持的 Java 正则表达式库
我正在寻找一个支持递归的Java regexp lib,例如:
"<a+(?0)>"
JDK不支持它,ORO也不支持。
有人知道这样的吗?
谢谢, Ondra
编辑:参见http://www.php.net/manual/ en/regexp.reference.recursive.php
我需要它来表达这个表达式:
(?:mUi)^/--++ *+(.*)(?: *(?<= |^)\\.((?:\\([^)\\n]+\\)|\\[[^\\]\\n]+\\]|\\{[^}\\ n]+\\}|<>|>|=|<){1,4}?))?$((?:\\n.*+)*)(?:\\n( ?0)|\\n\\\\--.*$|\\z)
I am looking for a Java regexp lib with support for recursion, like:
"<a+(?0)>"
JDK does not support it, ORO does neither.
Anyone knows about such?
Thanks,
Ondra
Edit: See http://www.php.net/manual/en/regexp.reference.recursive.php
And I need it for this expression:
(?:mUi)^/--++ *+(.*)(?: *(?<= |^)\\.((?:\\([^)\\n]+\\)|\\[[^\\]\\n]+\\]|\\{[^}\\n]+\\}|<>|>|=|<){1,4}?))?$((?:\\n.*+)*)(?:\\n(?0)|\\n\\\\--.*$|\\z)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
答案是:没有。我可能会修改 JDK 的 java.util.regex。
The answer is: There's none. I could possibly modify the JDK's
java.util.regex
.Stevesoft Pat 库具有一些递归匹配功能(记录在案 此处),但该功能可能没有您期望的那么有用。如果递归匹配对您来说很重要,那么您可能应该使用真正的解析器而不是正则表达式。
The Stevesoft Pat library has some recursive-matching capability (documented here), but that feature probably isn't as useful as you expect it to be. If recursive matching is that important to you, you should probably be using a real parser instead of regexes.