Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个应用程序,最终用户可以将多个电子邮件地址复制并粘贴到文本框中,然后这些电子邮件地址将全部移动到一行并用逗号和空格分隔,除了最后一个一,然后将结果值分配给一个变量。
非常感谢大家,在这个阶段我是一个初学者。
我需要假设这些电子邮件地址如下:
“电子邮件 1;电子邮件 2;电子邮件 3;电子邮件 N”
您可以使用 String.Split 方法:
string[] emailAddresses = txtBox.Text.Split(";");
这是你要找的吗?