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.