Re: Embedded packages, architectural decision needed

2024-03-29 Thread Jared Davis
The 1.3 version of regexp is known to be buggy. Old email thread "Source of regular expression jar in Xalan 2.7.3 RC9" Jan - April 2023 suggests removing it. https://github.com/apache/xalan-java/blob/master/xalan/pom.xml xalan-java/xalan/pom.xml at master · apache/xalan-java github.com

Re: Source of regular expression jar in Xalan 2.7.3 RC9

2023-04-12 Thread Jared Davis
> On Jan 31, 2023, at 12:12 PM, Jared Davis wrote: > > Hi, > > I've noticed an error in the regular expression jar that is included with > Xalan 2.7.3 RC9. > > import org.apache.regexp.RE; > public class ReBroken { > public static void main(String[] args) throw

Source of regular expression jar in Xalan 2.7.3 RC9

2023-01-31 Thread Jared Davis
Hi, I've noticed an error in the regular expression jar that is included with Xalan 2.7.3 RC9. import org.apache.regexp.RE; public class ReBroken { public static void main(String[] args) throws Exception { RE re = new RE("a[A-CDE-G]"); String test = "ABCDEFG";