将逗号分隔的字符串转换为 int[] 最简单的方法是什么?
所以我有像 1,5,7
这样的逗号分隔字符串,那么将此 string
转换为 int[]
的最简单和本机方法是什么>?我可以编写自己的分割函数,但人们对如何以最原生的方式完成它感兴趣。 预先感谢各位!
So I have comma-separated string like 1,5,7
, so what's the most simple and native way to convert this string
to int[]
? I can write my own split function, but there's some interest how to do it in most native way.
Thanks in advance guys!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者,LINQ-y 版本:
但第一个版本应该快一点。
or, a LINQ-y version:
But the first one should be a teeny bit faster.
干得好。
Here you go.