将字符串拆分为矩阵数组
我有一个 String:
1,3,4,5,
1,4,5,0,
2,5,3,8,
我想将其存储在变量矩阵 (int[][]
) 中。实现这一目标的最佳方法是什么?我应该使用 String
类的方法吗?或者我应该使用Regex
?
I have a String:
1,3,4,5,
1,4,5,0,
2,5,3,8,
That I want to store in a variable matrix (int[][]
). What is the best way to accomplish this? Should I use the String
class' methods? Or should I use a Regex
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先(通过
String.split(..)
)拆分换行,然后在,
上拆分每个结果数组的项目。然后使用Integer.parseInt(..)
解析每个First (by
String.split(..)
) split on newline, then split the items of each of the resultant array on,
. Then parse each usingInteger.parseInt(..)