I have a string of different emails
ex: "[email protected], [email protected], [email protected]" etc, etc
I would like to formulate a Regex that creates the following output
ex: "email1,email2,email3" etc, etc
How can I remove characters between an "@" and "," but leaving a "," and a Space in C#
Thank you so much for the help!!