我有一个像下面这样的字符串作为响应。我希望这个字符串格式化,以便每个参数一个接一个地出现。就像我得到这个字符串
string str1 = @"testmode=0<br>MessageReceived=Your order dispached and will be delived<br>Messagecount1
<br>could not access file: Error=Not enough credit send.";
我想格式化它,使它看起来像
testmode=0
message received=Your order dispached and will be delivered
message count=1
could not access file:
error=not enough credit send.