labra / ShExcala

ShEx expressions in Scala
http://labra.github.io/ShExcala/
MIT License
11 stars 3 forks source link

Repair regex patterns support #24

Open labra opened 8 years ago

labra commented 8 years ago

It seems that regex pattern is not working for some simple examples as:

"^[A-Z]" which should match all strings that begin by a letter (it only matches strings with one letter)

"\d{2}" should match 2 numbers but it doesn't parse. It only parses when it is "\d{2}"