I would like to parse the items with a single matching using a regular expression. I need the items to be assigned to groups individually.
custPowerCourse := 11.1,22.2,33.3,44.4,55.5;
Here is a proposed RegEx
((\w+)\s)?:=(\s?("[\w\s]*"|(\d+\.\d+)*)\s?(,|;|$))+