Releases: ifplusor/actrie
Releases · ifplusor/actrie
actrie v3.3.0
Optimize memory footprint.
Full Changelog: v3.2.5...v3.3.0
actrie v3.2.5
Compatible with python 3.10 and later.
actrie v3.2.4
Fix some bugs.
actrie v3.2.2
- Optimize constructor for long text;
- Polish dat_ac_next_on_node.
actrie v3.1.0
- Add deduplicate_extra option;
- Support msvc compiler;
- Support Java.
actrie v3.0.9
Fixed bugs.
new actrie v3.0
New architecture: pattern parser in c, and pattern match by reglet.
actrie v2.0.1
In this version, we use word position as python return, and fixed many bugs in python interface.
actrie v2.0
We support more types of pattern now, such as distance pattern, anti-ambiguous pattern, alternation pattern, and pure text pattern. And you can use them together.
Pattern Syntax
- pure text pattern: a
- alternation pattern: a|b|c
- anti-ambiguous pattern: a(?&!da)
- distance pattern: a.{0,3}b
- combined pattern: (a|b(?&!db1|db2)|c).{0,10}(d|e(?&!de)|f(?&!df1|df2))|g
We also provide python interface, you can use it in both python2 and python3.