如何将字符串转换为数组?
我有一个像这样的字符串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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
如果您有“黑门,白门,红门”字符串,则仅使用
,
作为分隔符if you have "black door,white door,red door" string then use only
,
as separator像这样使用 split
它只会在 上分割,而不是在空格上分割,并且应该给你预期的结果。
use split like this
It will split only on , and not the whitespace, and should give you the expected result.
使用 ',' 作为分隔符:
use ',' as separator:
您需要:
ToArray() 是不必要的。
You need:
ToArray() was unnecessary.
你能完整地发布你自己的代码吗?看来我们都同意这是正确的做法。
您是否尝试过迭代数组并打印出值?
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?
试试这个:
Try this: