Tagged Questions

13
votes
4answers
5k views

Javascript: negative lookbehind equivalent?

Is there a way to achieve the equivalent of a negative lookbehind in javascript regular expressions? I need to match a string that does not start with a specific set of characters. It seems I am ...
0
votes
2answers
76 views

Javascript regex: find a word NOT followed by space character

I need javascript regex that will match words that are NOT followed by space character and has @ before, like this: @bug - finds "@bug", because no space afer it @bug and me - finds nothing ...