What JVM/OS are you using?
-----Original Message-----
From: John Plate [mailto:[EMAIL PROTECTED]]
Sent: 25 August 2001 23:41
To: [EMAIL PROTECTED]
Subject: Surprise: regexp crash
Hi
I just downloaded the jakarta-regexp version 1.2 and created a
testprogram:
re = new RE(".*?(a*)(b*)", RE.MATCH_NORMAL);
if (re.match("xaabb")) {
for (int i=0; i < re.getParenCount(); i++) {
System.out.println("Match "+i+" "+re.getParen(i));
}
}
The program crashes with some error inside the regexp module.
Can someone please give some information about the state of the
package?
Thanks
--
John Plate