I have string as follows:
s = 'key1=1234 key2="string with space" key3="SrtingWithoutSpace"'
I want to convert in to a dictionary as follows:
key | value -----|-------- key1 | 1234 key2 | string with space key3 | SrtingWithoutSpace
How do I do this in python?
Thanks.
'key1=""foo"bar key2="baz'? – Mark Byers Jan 21 '11 at 22:50