How to parse the string " {'result':(Boolean, MessageString)} " using Python regular expressions to get Boolean and the MessageString separated into variables?
|
|
|
|
|
|
|
This works:
|
||
|
|
|
|
It looks like a dictionary+tuple in Python syntax, so eval() would also work (if you trust the source!!!) |
||
|
|
|
|
Depending on what you need there can be other solution than regular expression. For this particular example the following code will work:
There is also |
||
|
|
