I'm trying to output a specific string from within my httpwebresponse..
currently:
string str3 = (UrlResponse);
which if I use:
Console.Write(str3);
it will output:
<html>
<head>
<title>Hello World</title>
</head>
<body>
Random content....
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</body>
</html>
but I want to just output the text within
<td>2</td>
so expected ouput:
2