I have a String like this:
[potato=carrot,test=12b,apple=peer,tree={oak=1,birch={value=3}},foo=bar]
and I would like, with Java regex, get a String array:
potato=carrot
test=12b
apple="peer"
tree={oak=1,birch={value=3}}
foo=bar
I try several pattern but nothing conclusive... That's it, so if anyone has an idea... :)
Thank you in advance!