I have a string of different emails
ex: "email1@uy.com, email2@iu.it, email3@uu.edu" 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!!