Need Some Help Extracting Date from a LONG string

I’ve got the following string of data that I need to extract… the list is very long, so I’d prefer to automate it all…

$list = “First Last <website>, First Last <website>, First Last <website>, First Last <website>, First Last <website>, First Last <website>, First Last <website>, First Last <website>, First Last <website>, First Last <website>, First Last <website>”;

My brain is just NOT functioning right today… please help guide the way. I’d like to output it to a common seperated list.

Explode on ", " to separate the person entries, then for each, explode on [space] to separate first, last and <website>.