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)