gpt4 book ai didi

c# - 拆分所有列表框元素并将它们全部添加到一个新的字符串数组中

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

我的代码有问题。我有一个列表框,它有项目(项目数量未知)。我的列表框看起来像这样:

                       hello my friends
have a good day
how r u?
I will do it
aBcDe

我想将我所有的列表框项目转移到一个字符串数组中。之后,我想根据参数拆分它(参数=空间)。所以最后看看数组:

{'hello', 'my', 'friends', 'have', 'a', 'good', 'day', how', 'r', 'u?', 'I', 'will ','做','它','aBcDe'}

这是我的代码:

         char[] sc={' '};
string[] lb = mylistbox.Items.OfType<string>().ToArray();
int cnt = lb.Length;
for(int c=0; c<cnt; c++)
{
//I want to transfer the last array here.
}

感谢您的回答。

最佳答案

string[] lb = mylistbox.Items.OfType<string>().ToArray();

//Create a single string which contains all the items seperated by a space
string joined = string.Join(" ", lb);

//Split the single string at each space
string[] split = joined.Split(new char[] { ' ' });

关于c# - 拆分所有列表框元素并将它们全部添加到一个新的字符串数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54190787/

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