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 unable to find a regex that does this without failing if the matched part is found at the beginning of the string. Negative lookbehinds seem to be the only answer, but javascript doesn't have one.

EDIT: This is the regex that I would like to work, but it doesn't:

(?<!([abcdefg]))m

So it would match the 'm' in 'jim' or 'm', but not 'jam'

link|improve this question

Consider posting the regex as it would look with a negative lookbehind; that may make it easier to respond. – Daniel LeCheminant Mar 13 '09 at 3:53
feedback

4 Answers

up vote 18 down vote accepted

Use

newString = string.replace(/([abcdefg])?m/, function($0,$1){ return $1?$0:'m';});
link|improve this answer
2  
That worked! Thanks! – Andrew Mar 13 '09 at 4:13
feedback

Mijoja's strategy works for your specific case but not in general:

js>newString = "Fall ball bill balll llama".replace(/(ba)?ll/g,
   function($0,$1){ return $1?$0:"[match]";});
Fa[match] ball bi[match] balll [match]ama

Here's an example where the goal is to match a double-l but not if it is preceded by "ba". Note the word "balll" -- true lookbehind should have suppressed the first 2 l's but matched the 2nd pair. But by matching the first 2 l's and then ignoring that match as a false positive, the regexp engine proceeds from the end of that match, and ignores any characters within the false positive.

link|improve this answer
1  
Ah, you are correct. However, this is a lot closer than I was before. I can accept this until something better comes along (like javascript actually implementing lookbehinds). – Andrew Mar 13 '09 at 15:38
amen to that! :) – Jason S Mar 13 '09 at 15:40
feedback

Here's a writeup on several ways to mimic lookbehind in JavaScript.

link|improve this answer
This article was super helpful -- thanks. – T. Stone Mar 25 '11 at 17:13
feedback

I wrote a JS extension for this.

http://www.mitya.co.uk/blog/2011/Feb/Simulating-REGEX-look-behinds-JavaScript-153

link|improve this answer
Excellent work! Thanks for sharing. – Andrew Feb 6 at 15:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.