I'm trying to match all words in a line after (After this match) except those containing a number For example in a line I have :
After this match word word1 worldtwo word3 word4 wordfive 502 875
I want to match only words without numbers the result should be :
word worldtwo wordfive
The number of words in the line could change
I tried After this match ([a-zA-Z]*) but it matched only one word
Please see here : http://www.rubular.com/r/HykbS2Eajk
I'm using cakephp with regex but I need to do it only with regex