I have a set of data that is pulled from a website that is in between two specific blocks of characters:
<td>1,911</td>
<td>181</td>
<td>828</td>
<td>440</td>
<td>106</td>
<td>2,213</td>
<td>1,285<sup id="cite_ref-4" class="reference"><a href="#cite_note-4">[4]</a></sup></td>
I want to set up a RegEx that pulls anything between a ">" and a "<", so it returns the numbers in the middle of the <td>'s. I know I could do text to columns, but I want to learn the syntax behind RegExpressions better. Is there a way to set it up so that it returns just the digits and comma in between the > and <?
Thanks!
Jason