作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
简单地说,我当前正在开发的程序要求我拆分扫描仪输入(例如:2 个火腿和奶酪 5.5)。它应该读取杂货订单并将其分成三个数组。我应该使用 string.split 并能够将此输入分成三部分,而不管中间字符串中的空格如何。
示例输入#1:2 个苹果 0.9
示例输出#1:
2
苹果
0.9
示例输入 #2:另外 2 个苹果 0.9
输出示例#2:
2
更多苹果
0.9
我该如何实现这一目标?每当我使用 string.split 来分割有空格的地方时,当我只需要它在数字和字符串之间分割时,它就会分割“more”和“apples”。
谢谢。
最佳答案
试试这个(不言自明):
String str = "2 More Apples 0.9";
int fistSpaceIndex = str.indexOf(" ");
int lastSpaceIndex = str.lastIndexOf(" ");
int quantity = Integer.parseInt(str.substring(0, fistSpaceIndex));
String name = str.substring(fistSpaceIndex, lastSpaceIndex);
Double cost = Double.parseDouble(str.substring(lastSpaceIndex));
System.out.println(quantity + " " + name + " " + cost);
按空格分割字符串,因此第一个空格之前的所有内容都是数量,最后一个空格之后的所有内容都是成本,而保留之间的所有内容都是名称。
关于java - 如何将扫描仪输入拆分为(数字)(带空格的字符串)(数字),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26716002/
我是一名优秀的程序员,十分优秀!