使用正則表達式我想從如何從字符串中的Java
CallCost:Rs.13.04 Duration:00:00:02 Bal:Rs.14.67 2016 mein Promotion
解析浮點值從上面的字符串,我需要13.04和14.67解析浮點值。我提前用以下的正則表達式
Pattern p = Pattern.compile("\\d*\\.\\d+");
Matcher m = p.matcher(s);
while (m.find()) {
System.out.println(">> " + m.group());
}
但是使用這個我得到。「13" ,」 0.04" ,。「14" ,」 0.67" 感謝
[與正則表達式解析字符串](http://stackoverflow.com/questions/1646484/parse-string-with-regex) – Mohit