A: 

I can not test your code but try this regex:

regEx.Pattern = "<[^0-9<>]+>"

Your regex would match in "<foo><bar>" the whole string.
The above regex will match only the <foo>, then the <bar> and so on.

Nick D
I get the same result. There is something particular about the documents I am using this on. They are 4 column tables, if that helps. The most I can do is provide a screenshot of a sample document in my next edit.
jJack
print `ActiveDocument.Range.Text` to see if it contains all the text. Also check if the `regEx` properties handle multi-line text. (if possible, try to iterate table's rows and apply regex to each column)
Nick D
regEx.MultiLine = True 'should work. Now I try to iterate over tables...
jJack