What is the RegExp for parsing key-value pairs from a String that is in the following format:
A=B,C,D=E,G=12
My first approach was splitting by commas and then processing the result one by one and just wondered if this is possible to do more elegantly using regexp.
Regex not needed.