Skip to content

Instantly share code, notes, and snippets.

@j-
Created March 9, 2017 05:20
Show Gist options
  • Save j-/66c4134df7e0524cdfc994ae3aec992c to your computer and use it in GitHub Desktop.
Save j-/66c4134df7e0524cdfc994ae3aec992c to your computer and use it in GitHub Desktop.
Impossible Regular Expressions
/* These are regular expressions that will
never be matched by any string ever */
[
// http://stackoverflow.com/a/1845111
/$./,
// http://stackoverflow.com/a/1845097
/(?!x)x/,
// http://stackoverflow.com/a/1723264
/(?=a)b/,
// http://stackoverflow.com/a/1845111
/(?!)/,
// http://stackoverflow.com/a/4850260
/\B\b/,
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment