I need to match lists like:
a = 9, b=5 , c = 15
The values can be also of type double, string, char and boolean, or a previous variable (for example, a=b). I've tried to arrange the following regular expression
([A-Za-z0-9](=)?(,)?)|((=)?,\s*\d+)*
but no success achieved so far. Any help would be appreciated.