If I have a string where there is a valid JSON substring like this one:
mystr = '100{"1":2, "3":4}312'
What is the best way to do extract just the JSON string? The numbers outside can be anything (except a { or }), including newlines and things like that.
Just to be clear, this is the result I want
newStr = '{"1":2, "3":4}'
The best way I can think of do this is to use find and rfind and then take the substring. This seems too verbose to me and it isn't python 3.0 compliant (which I would prefer but is not essential)
Any help is appreciated.
findandrfind? – Nicholas Knight Nov 9 '11 at 17:17stringmodule because they were redundant. The built-instrclass includesfindandrfind, and they are not deprecated. docs.python.org/py3k/library/stdtypes.html#str.rfind – Nicholas Knight Nov 9 '11 at 17:47