Skip to content

Instantly share code, notes, and snippets.

@donmccurdy
Last active February 21, 2024 06:49
  • Star 33 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save donmccurdy/6d073ce2c6f3951312dfa45da14a420f to your computer and use it in GitHub Desktop.
Wildcard and glob matching in JavaScript.
/**
* Creates a RegExp from the given string, converting asterisks to .* expressions,
* and escaping all other characters.
*/
function wildcardToRegExp (s) {
return new RegExp('^' + s.split(/\*+/).map(regExpEscape).join('.*') + '$');
}
/**
* RegExp-escapes all characters in the given string.
*/
function regExpEscape (s) {
return s.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&');
}
@charanjit-singh
Copy link

anything for python?

@charanjit-singh
Copy link

@briwoto
Copy link

briwoto commented Aug 22, 2022

This is awesome. Thanks for the amazing helper function

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment