I am trying to make a regex pattern which matches a word/character a space and then comma seperated values with or without spaces before and after. I have found difficulty making a pattern which did this and was wondering if someone could help me. Example of what it should match: ages 19, 43,91
I was trying something like this, "(^[^\s])([^,]+)+", but it only matched the first one.