extract string using /\(.+\)/ for each character in string { if( come across '(' ) level++ if( comeacross ')' ) level-- if( level == 0 ) print string if( string come to end ) exit }
rrfeng
2013-07-15 16:42:32 +08:00
复杂的正则其实会降低程序的运行速度…… 不如切分自己处理
或者你真的需要的是嵌套么?具体问题具体分析,可能根本不用嵌套
Golevka
2013-07-15 19:21:37 +08:00
手撸一个top-down parser吧, 能直接构造出AST哦亲.
expr : atom (+ atom)* atom : digit | '(' expr ')'
第 1 页 / 共 1 页
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。