我有一个字符串currLine = "0 1435 " 3029 " "(1975.92)" " 72,304""
(字符串中有引号),我想打印出 currLine 中的所有整数。但是使用下面的代码,我只能打印出数字 0。如何使用 nextInt() 以便打印出所有整数?
Scanner scanLine = new Scanner(currLine);
while (scanLine.hasNext()) {
if (scanLine.hasNextInt()) {
System.out.println(scanLine.nextInt());
}
scanLine.next();
}