I have searched and searched about Regex but I can't seem to find something that will allow me to do this.
I need to get the 12.32, 2,300, 4.644 M and 12,444.12 from the following strings in C#:
<td class="c-ob-j1a" property="c-value">12.32</td>
<td class="c-ob-j1a" property="c-value">2,300</td>
<td class="c-ob-j1a" property="c-value">4.644 M</td>
<td class="c-ob-j1a" property="c-value">12,444.12 M</td>
I got up to this:
MatchCollection valueCollection = Regex.Matches(html, @"<td class=""c-ob-j1a"" property=""c-value"">(?<Value>P{</td>})</td>");
Thanks!