如何将字符串转换为数组?

发布于 2024-11-03 14:30:19 字数 267 浏览 2 评论 0原文

我有一个像这样的字符串string strings =“黑门,白门,红门”
现在我想把这个字符串放入数组中。
我使用 split myarray = strings.split(',') 然后数组如下所示:black,door,white,door,red,door。

我想要在每次出现逗号之后将字符串放入数组中,而不是在空格上。我希望它在数组中像这样: 黑门,白门,红门。

I have a string like this string strings=" black door,white door,red door "
Now I want to put this string into array.
I use split myarray = strings.split(',') then array look like this: black,door,white,door,red,door.

I want to put the string into the array after each occurance of comma not on the space. I want it like this in the array:
black door,white door,red door.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

七七 2024-11-10 14:30:19

如果您有“黑门,白门,红门”字符串,则仅使用 , 作为分隔符

var result = "black door,white door,red door".Split(',');

if you have "black door,white door,red door" string then use only , as separator

var result = "black door,white door,red door".Split(',');

enter image description here

伪心 2024-11-10 14:30:19

像这样使用 split

var result = myString.Split(',');

它只会在 上分割,而不是在空格上分割,并且应该给你预期的结果。

use split like this

var result = myString.Split(',');

It will split only on , and not the whitespace, and should give you the expected result.

凉栀 2024-11-10 14:30:19

使用 ',' 作为分隔符:

s.Split(',');

use ',' as separator:

s.Split(',');
蓝海 2024-11-10 14:30:19

您需要:

var array = input.Split(',');

ToArray() 是不必要的。

You need:

var array = input.Split(',');

ToArray() was unnecessary.

请恋爱 2024-11-10 14:30:19
string s = "black door,white door,red door";
string[] sarr;
sarr = s.Split(',');
string s = "black door,white door,red door";
string[] sarr;
sarr = s.Split(',');
避讳 2024-11-10 14:30:19

你能完整地发布你自己的代码吗?看来我们都同意这是正确的做法。

您是否尝试过迭代数组并打印出值?

string strings = "black door,white door,red door";
string[] myarray = strings.Split(',');
foreach (string temp in myarray)
{
    MessageBox.Show(temp);
}

Could you post your own code in its entirety? It seems we all agree that this is the proper way to do it.

Have you tried iterating through the array and printing out the values?

string strings = "black door,white door,red door";
string[] myarray = strings.Split(',');
foreach (string temp in myarray)
{
    MessageBox.Show(temp);
}
梦魇绽荼蘼 2024-11-10 14:30:19

试试这个:

string input = "black door,white door,red door";
string[] values = input.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);

Try this:

string input = "black door,white door,red door";
string[] values = input.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文