Skip to content

Releases: ifplusor/actrie

actrie v3.2.5

22 Feb 00:22
v3.2.5
72d3c92
Compare
Choose a tag to compare

Compatible with python 3.10 and later.

actrie v3.2.4

21 Feb 23:25
v3.2.4
Compare
Choose a tag to compare

Fix some bugs.

actrie v3.2.2

20 Oct 10:02
Compare
Choose a tag to compare
  1. Optimize constructor for long text;
  2. Polish dat_ac_next_on_node.

actrie v3.1.0

14 Aug 02:51
Compare
Choose a tag to compare
  1. Add deduplicate_extra option;
  2. Support msvc compiler;
  3. Support Java.

actrie v3.0.9

31 May 01:59
Compare
Choose a tag to compare

Fixed bugs.

new actrie v3.0

07 Apr 22:19
Compare
Choose a tag to compare

New architecture: pattern parser in c, and pattern match by reglet.

actrie v2.0.1

17 Nov 09:29
Compare
Choose a tag to compare

In this version, we use word position as python return, and fixed many bugs in python interface.

actrie v2.0

03 Nov 07:33
ab18902
Compare
Choose a tag to compare

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

  1. pure text pattern: a
  2. alternation pattern: a|b|c
  3. anti-ambiguous pattern: a(?&!da)
  4. distance pattern: a.{0,3}b
  5. 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.