I'm looking to see if there is a way to get a match group for each of a comma separated list after a positive lookbehind.
For example
#summertime swimming, running, tanning
Regex (so far)
(?<=#summertime\s)(.+)
Returns
["swimming, running, tanning"]
Desired Results
["swimming", "running", "tanning"]