我有一个微调器,其中填充了一个字符串列表,例如“Item 1:1.5 - 2.5”,当我从旋转器中选择它时,我想以某种方式从该字符串中提取数字部分(1.5 - 2.5)然后计算两个数字的平均值。
我最初的想法是在从微调器中选择字符串时获取字符串,然后使用copyValueOf方法从字符串中提取数字,然后将它们添加到自己的变量中并确定平均值。不幸的是我不知道如何在代码中设置它。如何从字符数组中单独收集数字?所有数字都是3位数长(2.3),包括小数,所以也许我可以在数组上使用getChars函数并将前3个字符放入一个变量中,然后将最后3个字符放在另一个变量中?
答案 0 :(得分:1)
String s="Item 1: 1.5 - 2.5"//s=spinner.getItemAt(i)
String newS[]=s.split(":");//newS[0]="Item 1" and newS[1]="1.5-2.5"
String newS2[]=newS[1].split("-");//
Double d1=Double.parseDouble(newS2[0]);
Double d2=Double.parseDouble(newS2[1]);
Double avg=(d1+d2)/2;
答案 1 :(得分:0)
String str = "Item 1: 1.5 - 2.5";
String[] strs = str.split(":");
String numberStr = (strs[strs.length - 1]).trim();
String[] numbers = numberStr.split("-");
float sum = 0f;
for (int i = 0; i < numbers.length; i++) {
sum = sum + Float.valueOf(numbers[i]).floatValue();
}
//Here, get the average of the two numbers
float result = sum / (numbers.length);
这可能是最好的闷热,但它有效,我已经测试过,希望这可以帮到你。