Created
March 13, 2015 10:39
-
-
Save zestime/8cf8b4d7d5d176e5fa16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> /bbb(?=ccc)/.exec("aaabbbccc") // lookahead | |
["bbb"] | |
> /bbb(?=ccc)/.exec("dddbbbeee") | |
null | |
> /bbb(?!ccc)/.exec("aaabbbccc") // negative lookahead | |
null | |
> /bbb(?!ccc)/.exec("dddbbbeee") | |
["bbb"] | |
> /(?<=aaa)bbb/.exec("aaabbbccc") // lookbehind? | |
Uncaught SyntaxError: Invalid regular expression: /(?<=aaa)bbb/: Invalid group |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment