I'm trying to match *
in id=resultsStats>*<nobr>
to extract the middle bit.
This would match e.g.
id=resultsStats>3<nobr>
id=resultsStats>anything<nobr>
so I can extract the middle "3" or "anything" How do I do this in .NET regex or otherwise?