Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let's move glob_to_regex into the tree before it vanishes from Synapse #218

Merged
merged 1 commit into from
Feb 9, 2022

Conversation

Yoric
Copy link
Contributor

@Yoric Yoric commented Feb 9, 2022

No description provided.

"""
# we can't use \b as it chokes on unicode. however \W seems to be okay
# as shorthand for [^0-9A-Za-z_].
return r"(^|\W)%s(\W|$)" % (r,)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that the match isn't exactly the same with and without \b:

image

image

But not sure if that's relevant enough to care about it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At this stage, this is purely copy&paste from Synapse. I think we can refine later if needs be.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants