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
The C2 regular expression #REG(bal.?m) is currently translated to the Lucene equivalent bal.?m/ in KorAP. While C2 interprets regular expressions as partial matches, Lucene interprets them as full matches. So the valid interpretation of the first query has to be /.*bal.?.*/ instead. To have a full match, C2 requires anchor operators, i.e. #REG(^bal.?m$).
The text was updated successfully, but these errors were encountered:
First fix #66!
The C2 regular expression
#REG(bal.?m)
is currently translated to the Lucene equivalentbal.?m/
in KorAP. While C2 interprets regular expressions as partial matches, Lucene interprets them as full matches. So the valid interpretation of the first query has to be/.*bal.?.*/
instead. To have a full match, C2 requires anchor operators, i.e.#REG(^bal.?m$)
.The text was updated successfully, but these errors were encountered: