Hi
I’m working on getting a back reference working to pull all the monetary values from a string like this:
<tr><td colspan="2">
<strong>
Charity Revenue
</strong>
</td><td align="right">
<strong>
18,904,000
</strong>
</td><td align="right">
<strong>
14,807,000
</strong>
</td><td align="right">
<strong>
13,174,044
</strong>
</td></tr>
The back reference I have so far to pull these values is:
([0-9]*,?)*
And it does pull all three value strings but I’m getting a mental block on how to restrict it so it only pulls out such patterns between the opening text:
Charity Revenue
and the final:
</tr>
Can you help?