vote up -2 vote down star

How to parse the string " {'result':(Boolean, MessageString)} " using Python regular expressions to get Boolean and the MessageString separated into variables?

flag

3 Answers

vote up 1 vote down check

This works:

>>> x = re.search('\((.*),\s*(.*)\)', " {'result':(Boolean, MessageString)} ")
>>> x.group(1)
'Boolean'
>>> x.group(2)
'MessageString'
link|flag
vote up 1 vote down

It looks like a dictionary+tuple in Python syntax, so eval() would also work (if you trust the source!!!)

link|flag
vote up 0 vote down

Depending on what you need there can be other solution than regular expression. For this particular example the following code will work:

>>> compile("{'result':(Boolean, MessageString)}", '<expr>', 'eval').co_names
('Boolean', 'MessageString')

There is also parser module which might be useful for such tasks.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.