Re: StackOverflowException

"Daniel F. Savarese" <[email protected]> Fri, 19 Sep 2003 13:19:07 -0400
Newsgroups gmane.comp.jakarta.oro.devel
Message-ID <[email protected]>
In message <07d001c37ec3$d52cc770$0665a8c0@prxu2>, "Pavel Sher" writes:
>Pattern insideTagRE =3D new Perl5Compiler().compile( "<(([^>]|\n)*)>" );
...
>Is this is a problem with my regexp or something else?

It's the pattern.  See the mail archives and bugzilla reports for a more
detailed explanation.  You don't need to use alternation.  Change
"<(([^>]|\n)*)>" to "<([^>]*)>"

daniel