In message <[EMAIL PROTECTED]>, "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 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
