Scrape a comma-separated list separately

I have a list of names separated by commas.

These: д-р Дейвид Пърлмътър, д-р Остин Пърлмътър, Кристин Лобърг

All I want to get from the list separately. So:

д-р Дейвид Пърлмътър
д-р Остин Пърлмътър
Кристин Лобърг

I tried the following regex, but it only gets the first name: .+,
I only get this: д-р Дейвид Пърлмътър

A better regex for the first name would be:
.+?(?=\,)

For the second name:
(?<=.+?\,)[^\,]+

For the third name:
(?<=.+?\,.+?\,)[^\,]+