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

Ok i got this example from Regular Expression Cookbook

^(?=.{3}$).*

The regex above is use to limit the length of an arbitrary pattern

If i test again 'aaabbb', it completely fail

From what i understand it look for any character that precede by any character 3 in length.SO it should match 'bbb' but its not

One more question, should lookbehind follow this pattern x(?=x)

share|improve this question
What you are using is a look-ahead assertion as it looks at characters that are not yet consumed. A look-behind assertion would look at characters that are already consumed. – Gumbo Aug 16 '10 at 18:22
But what exactly are you trying to accomplish? – Gumbo Aug 16 '10 at 18:22
edited:Limit the length of an arbitrary pattern – slier Aug 16 '10 at 18:27
@slier: But ^(?=.{3}$) will only match strings of the length three. So aaabbb (length is six) won’t be matched. – Gumbo Aug 16 '10 at 18:28
actually im myself confused.did the lookahead assertion match position at 3rd a, so the remainder of the regex .* should match 'bbb' – slier Aug 16 '10 at 18:33
show 2 more comments

2 Answers

up vote 3 down vote accepted

That is actually a lookahead assertion not a lookbehind assertion. The ^ anchors the match at the start of the string, it then asserts that the beginning of the string must be followed by 3 characters followed by the end of the string.

Edit: I should have probably mentioned that the .* at the end is then used to match those three characters since a lookahead assertion doesn't consume any characters.

share|improve this answer
what you mean by not consume any characters? – slier Aug 16 '10 at 18:35
I mean that after completing the lookahead assertion, the Regex engine continues comparing the string from the point it entered the lookahead. So given the pattern ^(?=foo)(.*)$ and the input foobar the value capture by capture group 1 would be foobar. The pattern will first perform the look ahead, i.e. check if the start of the string is foo, it will then move onto the .* since the lookahead doesn't consume any characters, this means the first letter matched by .* is the f then the o an so forth until it has captured 'foobar' – Cags Aug 16 '10 at 18:43

From what i understand it look for any character that precede by any character 3 in length.SO it should match 'bbb' but its not

Nope! Let's take a closer look...

^        # The caret is an anchor which denotes "STARTS WITH"
(?=      # lookahead
   .     # wildcard match; the . matches any non-new-line character
    {3}  # quantifier; exactly 3 times
   $     # dollar sign; I'm not sure if it will act as an anchor but if it did it would mean "THE END"
)        # end of lookbehind
.        # wildcard match; the . matches any non-new-line character
 *       # quantifier; any number of times, including 0 times

Several problems:

  1. The caret requires that the .* be the first characters in the string and then you're trying to lookbehind them for characters sandwhiched between the beginning ^ and the first characters .*.
  2. Your .{3} actually means any three characters, not any character repeated three times ;) You actually want to know How can I find repeated letters with a Perl regex?
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.