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
2009-10-03 01:06:45