I'm trying to capture key-value pairs from strings that have the following form:
a0=d235 a1=2314 com1="abcd" com2="a b c d"
Using help from this post, I was able to write the following regex that captures the key-value pairs:
Pattern.compile("(\\w*)=(\"[^\"]*\"|[^\\s]*)");
The problem is that the second group in this pattern also captures the quotation marks, as follows:
a0=d235
a1=2314
com1="abcd"
com2="a b c d"
How do I exclude the quotation marks? I want something like this:
a0=d235
a1=2314
com1=abcd
com2=a b c d
EDIT:
It is possible to achieve the above by capturing the value in different groups depending on whether there are quotation marks or not. I'm writing this code for a parser so for performance reasons I'm trying to come up with a regex that can return the value in the same group number.