Hi regex gurus,
I need help to construct a search pattern in MS Word 2010, using
wildcards.
I need to find all occurences of words which end in -ing and are not preceded by commas - e.g.
The brown fox stood looking at the hunter. - this is a match
The brown fox stood, looking at the hunter. - this is NOT a match
I was thinking of something like this: [!,] <[A-Za-z]@ing>
but it finds ""d looking", rather than just "looking".
Can someone jusest me a more elegant solution?