mdcsvimporter2015-v21
regex change to hopefully give more flexibility. you need to use named capture groups, using and
as in: "?(?<value>.*?)"?(?:[,]|\Z)(?<rest>.*)
value = what string you want to pull out for the field value.
rest = is left over line to parse next.