How to decode Feedburner result containing \x3c and so on

后端 未结 3 899
既然无缘
既然无缘 2021-01-16 17:50

Feed burner changed their blog service return results that it returns blocks of javascript similar to:

document.write(\"\\x3cdiv class\\x3d\\x22feed

3条回答
  •  一生所求
    2021-01-16 18:10

    In dotnet core you can use Uri.UnescapeDataString(originalString.Replace("\x","%")) to convert it by making it into a Url encoded string first.

提交回复
热议问题