--- code/trunk/testinput3 2007/02/24 21:38:49 27 +++ code/trunk/testinput3 2007/02/24 21:38:57 31 @@ -1625,4 +1625,17 @@ the.quick.brown.fox_ the.quick.brown.fox+ +/(?>.*)(?<=(abcd|wxyz))/ + alphabetabcd + endingwxyz + *** Failers + a rather long string that doesn't end with one of them + +/word (?>(?:(?!otherword)[a-zA-Z0-9]+ ){0,30})otherword/ + word cat dog elephant mussel cow horse canary baboon snake shark otherword + word cat dog elephant mussel cow horse canary baboon snake shark + +/word (?>[a-zA-Z0-9]+ ){0,30}otherword/ + word cat dog elephant mussel cow horse canary baboon snake shark the quick brown fox and the lazy dog and several other words getting close to thirty by now I hope + / End of test input /