Subject: | Deep recursion in _trie_regex |
Am getting this error:
Deep recursion on subroutine "Regexp::List::_trie_regex" at C:/Perl58/site/lib/Regexp/List.pm line 342.
... with this test code:
use Regexp::Optimizer;
@res = ( '^[A-Z]\.\(\d\)$', '^[A-Z]\.\(\d\d\)$' );
my $o = new Regexp::Optimizer;
my $re = $o->list2re(@res);
I'm using an ActivePerl build of 5.8.0 on WinXP.
Thanks for any help you can give!