I am getting http response as an array from php in android. The response i sent is a ULR. When i get it, it comes as:
["http:\/\/karan.development.com\/Image_android\/upload_image_14552.jpg"]
I tried to remove the charachters as:
String trim;
trim = beforeTrim.replaceAll("[\]", "");
here, "beforeTrim" is a string where the url is stored. But unfortunately it dosen't works. Please anyone help