gpt4 book ai didi

c# - 将数组的值保存在一个字符串中

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

我有一个包含 4 个值的数组:

string[] selectedObject;

如何将数组的所有 4 个值保存在字符串中,例如:

string selectedObjects = "";

我需要一个这样的字符串:

selectedObjects = "123; 132; 231; 132;";

最佳答案

string selectedObjects = string.Join("; ", selectedObject);

这将产生输出 "123; 132; 231; 132" - 如果你真的想要另一个 ; 最后你可以手动添加它以获得所有基地涵盖:

if (!string.IsNullOrEmpty(selectedObjects))
selectedObjects = selectedObjects + ";";

这将为任何 selectedObject 数组长度(包括零)生成正确的输出。

关于c# - 将数组的值保存在一个字符串中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5333539/

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