gpt4 book ai didi

c# - 遍历字符串 - 有更好的方法吗?

转载 作者:太空狗 更新时间:2023-10-30 00:06:50 34 4
gpt4 key购买 nike

我使用以下代码将一个字符串数组传递给一个函数。数组中的字符串是电子邮件地址的第一部分。我需要在每个字符串的末尾添加 domain.com,并在每个地址之间添加一个“,”。我有下面的工作代码,但只是想知道是否有一种(更好/更清洁/更有效)的方法来做到这一点?

String toAddress = "";
for (int x = 0; x < addresses.Length; x++)
{
if (x == (addresses.Length-1))
{
toAddress += addresses[x] + "@domain.com";
}
else
{
toAddress += addresses[x] + "@domain.com,";
}
}

最佳答案

你可以使用 Join 和 Linq Select 来解决这个问题

string toAddress = string.Join(",", addresses.Select(x => x + "@domain.com"));

关于c# - 遍历字符串 - 有更好的方法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48682404/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com