Character Classes with Quantifiers do not work
bgfeldm opened this issue · 1 comments
bgfeldm commented
Character classes with a quantifier do not work, such as \d{2} or \d{2,3} as they do in a Java Regex. Instead they have to be written as \d\d or as [0-9]{2,3} .
amoeller commented
Please read the documentation, in particular https://www.brics.dk/automaton/doc/index.html?dk/brics/automaton/RegExp.html, and see also the FAQ: https://www.brics.dk/automaton/faq.html