How do I convert a string into an array?

2019-02-24 05:28发布

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.

7条回答
The star\"
2楼-- · 2019-02-24 05:57

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);
}
查看更多
登录 后发表回答