Good Afternoon everyone.
I am currently working on a little side project that aquires player statitical data from a website / XML Feed
getting the data is fine and using item.substring(item.indexOf("ABC"))
but what i would like to do is call a series of information and show them with in a datagrid view or a listbox of current players online in that server
the layout of the data i would be getting from the website source is the following:
<table class="table_lst table_lst_stp">
<tr>
<td class="col_h c01">
Rank
</td>
<td class="col_h c02">
Name
</td>
<td class="col_h c03">
Score
</td>
<td class="col_h c04">
Time Played
</td>
</tr>
<tr>
<td class="c01">
1.
</td>
<td class="c02">
<a href="/player/Peachy/70.42.74.86:28930/">
Peachy
</a>
</td>
<td class="c03">
40
</td>
<td class="c04">
14:58
</td>
</tr>
<tr>
<td class="c01">
2.
</td>
<td class="c02">
<a href="/player/Chubby/70.42.74.86:28930/">
Chubby
</a>
</td>
<td class="c03">
0
</td>
<td class="c04">
11:26
</td>
</tr>
</table>
I am not sure how i can split this into their own data for Playername, score and time online.
would i use an array ?
some help on how i could go about this would be really helpful.
I am writing this application in C# windows Application Enviroment