Received String Editing WebResponse

-1

I get information through responseStreamReader.ReadToEnd().ToString(); .

But before displaying it on the User screen I want to edit it. How to proceed?

    
asked by anonymous 01.09.2015 / 18:32

1 answer

0

According to the comments of the question, I believe you wanted to know how to change the contents of a string. In that case, what @David said is a possibility:

reponseStreamReader.ReadToEnd().ToString().Replace("OK ", "");

But there are many functions that modify a string, which are documented in that MSDN link .

    
01.09.2015 / 19:15