Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've found these things in my regex body but I haven't got a clue what for I can use them? Does somebody got some examples so I can try to understand how they work?

(?!) - negative lookahead
(?=) - positive lookahead
(?<=) - positive lookbehind
(?<!) - negative lookbehind

(?>) - atomic group
share|improve this question

3 Answers

up vote 29 down vote accepted

Lookarounds are zero width assertions. The check for a regex (towards right or left of the current position - based on ahead or behind), succeeds or fails when a match is found (based on if it is positive or negative) and discards the matched portion. They don't consume any character - the matching for regex following them (if any), will start at the same cursor position.

Read regular-expression.info for more details.

  • Positive lookahead:

Syntax:

(?=REGEX_1)REGEX_2

Match only if REGEX_1 matches; after matching REGEX_1, the match is discarded and searching for REGEX_2 starts at the same position.

example:

(?=[a-z0-9]{4}$)[a-z]{1,2}[0-9]{2,3}

REGEX_1 is [a-z0-9]{4}$ which matches four alphanumeric chars followed by end of line.
REGEX_2 is [a-z]{1,2}[0-9]{2,3} which matches one or two letters followed by two or three digits.

REGEX_1 makes sure that the length of string is indeed 4, but doesn't consume any characters so that search for REGEX_2 starts at the same location. Now REGEX_2 makes sure that the string matches some other rules. Without look-ahead it would match strings of length three or five.

  • Negative lookahead

Syntax:

(?!REGEX_1)REGEX_2

Match only if REGEX_1 does not match; after checking REGEX_1, the search for REGEX_2 starts at the same position.

example:

(?!.*\bFWORD\b)\w{10,30}$

The look-ahead part checks for the FWORD in the string and fails if it finds it. If it doesn't find FWORD, the look-ahead succeeds and the following part verifies that the string's length is between 10 and 30 and that it contains only word characters a-zA-Z0-9_

Look-behind is similar to look-ahead: it just looks behind the current cursor position. Some regex flavors like javascript doesn't support look-behind assertions. And most flavors that support it (PHP, Python etc) require that look-behind portion to have a fixed length.

  • Atomic groups basically discards/forgets the subsequent tokens in the group once a token matches. Check this page for examples of atomic groups
share|improve this answer
Great explanation, Respect – Spidfire Jun 4 '10 at 11:37

given the string foobarbarfoo

bar(?=bar)     finds the first bar.
bar(?!bar)     finds the second bar.
(?<=foo)bar    finds the first bar.
(?<!foo)bar    finds the second bar.

you can also combine them

(?<=foo)bar(?=bar)    finds the first bar.

Look ahead Positive(?=)

Find expression A where expression B follows

  • A(?=B)

Look ahead Negative(?!)

Find expression A where expression B does not follow

  • A(?!B)

Look behind Positive(?<=)

Find expression A where expression B precedes

  • (?<=B)A

Look behind Negative(?<|)

Find expression A where expression B does not precedes it

  • (?<!B)A
share|improve this answer
+1 SImple yet Smart – diEcho Feb 15 '12 at 8:42

You can find a detailed description by following these links:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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