I’m developing an application which use HTTP REST API .I’m load response to string which looks like this:
string report = "<html><head><tittle>JSLEE OC WebSerbice</title></head><body>
<code><h3>JSLEE webService received REST request:</h3>
<p>HttpRequest..............</p>
<p>X: 52 10 28 <p> Y: 32 12 32 </body></html>"
I want to load value of X and Y to other variables, how can I do that?
Most likely you are becoming HTTP response from web page.
Use Html Agility Pack to parse response and extract your values