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

Escaping of - not compatible with MongoDB #22

Closed
marwej opened this issue Apr 16, 2020 · 4 comments · Fixed by #23
Closed

Escaping of - not compatible with MongoDB #22

marwej opened this issue Apr 16, 2020 · 4 comments · Fixed by #23

Comments

@marwej
Copy link

marwej commented Apr 16, 2020

I do a MongoDB query like:

const query = {
    email: new RegExp('^' + escapeString(email) + '$', 'i'), // Case insensitive
};

In 3.0.0, this is not working with emails containing -. Do you know how I could write this using the new way to escape -?

@sindresorhus
Copy link
Owner

// @charmander

@pcorey
Copy link

pcorey commented Apr 16, 2020

I'm also using this library primarily to escape regex MongoDB queries. Any way to opt out of escaping - would be great.

@charmander
Copy link
Contributor

Regular expression is invalid: PCRE does not support \L, \l, \N{name}, \U, or \u

Going back to the original \x2d will work for Mongo support.

charmander added a commit to charmander/escape-string-regexp that referenced this issue Apr 16, 2020
@pcorey
Copy link

pcorey commented Apr 23, 2020

Thanks @sindresorhus and @charmander! Just confirmed it's working for me.

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 a pull request may close this issue.

4 participants