Given the following string:
"<head></head><body>{"filesize":55312,"success":false,"msg":"incorrect-captcha-sol"}<div firebugversion="1.5.4" style="display: none;" id="_firebugConsole"></div></body>"
I need to extract the JSON string as follows:
{"filesize":55312,"success":false,"msg":"incorrect-captcha-sol"}
How should I do this?
Thank you
1 Answer