Decoding html returned as json response - android

前端 未结 4 1781
独厮守ぢ
独厮守ぢ 2021-01-07 02:04

I am getting following encoded html as a json response and has no idea how to decode it to normal html string, which is an achor tag by the way.

x3ca hrefx3d         


        
4条回答
  •  一生所求
    2021-01-07 02:54

    Thanks!!

    Take care, in the for the operator must be "<=" else one character can't be decoded.

    for(int i=0;i<=input.length()-4;i++) {..}

    Cheers!

提交回复
热议问题