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
import esmre
index = esmre.Index()
index.enter(r"Major-General$", "savoy opera")
matched = index.query("I am the very model of a modern Major-General.")
print(matched)
this would output: ['savoy opera'], but it should not match for there is a '$' at the end of the index
The text was updated successfully, but these errors were encountered:
import esmre
index = esmre.Index()
index.enter(r"Major-General$", "savoy opera")
matched = index.query("I am the very model of a modern Major-General.")
print(matched)
this would output: ['savoy opera'], but it should not match for there is a '$' at the end of the index
The text was updated successfully, but these errors were encountered: