My HTTP Request responds with combination of string and JSON, something like this:
null{"username:name","email:email"}
I need only the JSON part.
I directly tried parsing as json object, which was not right of course. I tried splitting it: serverResponse.split("{")
, but android does not allow to parse with this character because it is not a pattern. Any suggestion how i can achieve this?