CodesAway / RegExPlus

RegExPlus - extends Java's regular expression syntax by adding support for additional Perl and .NET syntax.
http://codesaway.info/RegExPlus/
BSD 3-Clause "New" or "Revised" License
5 stars 1 forks source link

Sync up RegExPlus with functionality added in Java 7 / 8 #7

Open CodesAway opened 4 years ago

CodesAway commented 4 years ago

For example, Pattern flag UNICODE_CHARACTER_CLASS

This allows \w and other built-in types to work with unicode characters. You can still pass the java.util.regex.Pattern int value, since RegExPlus uses Java's regex engine behind the scenes. However, adding this constant to RegExPlus directly will be much preferred.

CodesAway commented 3 years ago

This done as part of 2.0.0 release, but need to verify