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
Query.matches(), which uses re.match, searches from beginning of field value. I propose a new feature that mirrors python's re.search and allows matching inside field value, not just a beginning.
Perhaps this could be done by additional parameter to QueryRegex (something like re_method) to distinguish between Query.matches() and Query.search.
I can submit pull request if ready?
The text was updated successfully, but these errors were encountered:
That's cool. Makes more sense. I thought about it at first but saw there was another function with same name. Been away on holidays - only just checked emails.
Query.matches()
, which usesre.match
, searches from beginning of field value. I propose a new feature that mirrors python'sre.search
and allows matching inside field value, not just a beginning.Perhaps this could be done by additional parameter to QueryRegex (something like
re_method
) to distinguish betweenQuery.matches()
andQuery.search
.I can submit pull request if ready?
The text was updated successfully, but these errors were encountered: