I have a string like this:
field1:value1 field2:value2
field can have spaces ie. "field name:" but the value field will never have any.
Using a regex what is an easy way extract the field value pairs into numerical groups without knowing the field name beforehand?
I'm using python b
Thanks