You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In preparing for #128 , I noticed that the SALAMI-upper and lower regexps match [A-Z]+'*, which is intended to capture things like AAA''', but could erroneously match ABC''.
The proper way to do this is to use a backreference, eg, ([A-Z])\1*.
It's not clear that jsonschema supports PCRE backreferences though, so we might have to run this out by hand: `A+|B+|C+|...|Z+'.
The text was updated successfully, but these errors were encountered:
In preparing for #128 , I noticed that the SALAMI-upper and lower regexps match
[A-Z]+'*
, which is intended to capture things likeAAA'''
, but could erroneously matchABC''
.The proper way to do this is to use a backreference, eg,
([A-Z])\1*
.It's not clear that jsonschema supports PCRE backreferences though, so we might have to run this out by hand: `A+|B+|C+|...|Z+'.
The text was updated successfully, but these errors were encountered: