i have a long string(html), and i want to grab each value that is between < td> < /td>, example, i need the strings "avatr","lionking" :
<td>avatar</td> <td> lionking</td> and so on....
i have a long string(html), and i want to grab each value that is between < td> < /td>, example, i need the strings "avatr","lionking" :
<td>avatar</td> <td> lionking</td> and so on....
Because you are parsing HTML (a context-free language), you should not use regular expressions. For details, see this post.
Fortunately, .NET has a great library available for parsing HTML called the HTML Agility Pack