Like if I have the tags
<td class="cit-borderleft cit-data">437</td>
<td class="cit-borderleft cit-data">394</td>
<td class="cit-borderleft cit-data">12</td>
<td class="cit-borderleft cit-data">**12**</td>
But I need to match number 12 in the last tag. I am using the regex expression "<td class=\"cit-borderleft cit-data\">(.*?)</td>"
but it will match all four of the tags.