I am not familiar with various XML formatting I have recieved XML document most part of the document looks OK (I can convert to a dataset in .net using XMLReader etc.) however, I see HTML table inside that document?
for brevity I am posting sample html:
<table>
<tr>
<td>1</td>
<td>A1</td>
<td>100</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>57.3055058694109</td>
<td>-34.25451779412</td>
<td>-52.0038336686283</td>
<td>58.2700128150308</td>
<td>-27.6125327409403</td>
<td>-34.0354177282971</td>
<td>5.62354809254242</td>
<td>-0.964506945619888</td>
<td>-6.6419850531797</td>
<td>-17.9684159403313</td>
<td>5.17635156249084</td>
<td>18.4441134607471</td>
<td>0.984914387144844</td>
</tr>
</table>
How to parse table using .net (VB.net or C#)
Assuming that the table is valid XHTML, you can parse it using the
XElementclass.If it isn’t, you can parse it using the HTML Agility Pack.
Under no circumstances should you attempt to parse it using regular expressions.