gpt4 book ai didi

c# - 在 C# 中连接字符串时如何插入分隔符?

转载 作者:太空宇宙 更新时间:2023-11-03 21:40:21 25 4
gpt4 key购买 nike

我有一个字符串列表,我正在连接它以使用在 DotNetPerls 上看到的方法来展平列表,http://www.dotnetperls.com/string-concat

我的问题是......在他们的列表示例中,他们的输出是“catdogperls”(见网页底部,就在摘要之前)我如何插入#符号作为“catdogperls”之间的分隔符这样它变成了“cat#dog#perls”?

最佳答案

在这种情况下你不想使用string.Concat(),你想use string.Join() .这接受一个分隔符和一个由该分隔符连接的字符串数组。例如:

var joined = string.Join("#", theArray);

这会将字符串值放入 joined:

"cat#dog#perls"

(当然,假设 theArray 包含这些值)

关于c# - 在 C# 中连接字符串时如何插入分隔符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19624855/

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