将抄送电子邮件地址与字符串c#分开

本文关键字:字符串 分开 电子邮件地址 | 更新日期: 2023-09-27 18:26:39

假设您有一个来自等电子邮件应用程序的抄送电子邮件地址字符串

hello@test.com;hello@test.co.uk;hi@test.com;

我如何将这些字符串分开?

将抄送电子邮件地址与字符串c#分开

emailAddresses.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries); 

您可以使用字符串的拆分函数:

string cc = "hello@test.com; hello@test.co.uk; hi@test.com;";
string[] emails = cc.Split(';');
foreach (string email in emails)
{
    Console.WriteLine(email);
}

HTH