资 源 简 介
News
09 Sep 2008: New source tarball and Windows pre-compiled executables. Checked with valgrind for memory leak. Tests are still to be fixed!
25 Aug 2008: Back to the NFA approach! Also, now every modifier is greedy. The expressions like ".+z" or "d+3" will never succeed as the first term of the expression will eat all the available characters. Current version under SVN supports:
Captures (up to 8)
Back reference to captures (e.g. "{a+)b1" matches aba, aabaa, etc )
Negated expressions that match 0 characters of the input.
07 Feb 2008: Stuck on an issue on the determinization step. The algorithm described in the PDF and implemented in the code succeedn on (a*)(a)a but fails on ([ab]*)(a)([ab]*