How can I parse a strings like :
name1="val1" name2="val2" name3="val3"
I cannot use split(\s+) as it can be name = "val 1".
I am doing java but any laguage is okay.
|
|
Here it is in Java, with a slight variation on the regex, with capturing group to put the name/value pairs into a This usage of
API linksregular-expressions.info links |
|||||
|
|
In Python:
|
|||
|
|