标签: java parsing
在Java中解析字符串中的数字的最简单方法是什么? 如:String num =“123”;
答案 0 :(得分:2)
int n = Integer.parseInt(s)。
int n = Integer.parseInt(s)