让我说我有这样的字符串:
eXamPLestring> 1.67>> ReSTOfString
我的任务是从上面的字符串中仅提取1.67。
我认为正则表达式是有用的,但我无法弄清楚如何编写propper表达式。
答案 0 :(得分:7)
如果您想从 Int
中提取所有 Float
和 String
strong>,你可以按照我的解决方案:
private ArrayList<String> parseIntsAndFloats(String raw) {
ArrayList<String> listBuffer = new ArrayList<String>();
Pattern p = Pattern.compile("[0-9]*\\.?[0-9]+");
Matcher m = p.matcher(raw);
while (m.find()) {
listBuffer.add(m.group());
}
return listBuffer;
}
如果您还要解析负值,可以将 [-]?
添加到这样的模式中:
Pattern p = Pattern.compile("[-]?[0-9]*\\.?[0-9]+");
如果您还想将 ,
设置为分隔符,可以将 ,?
添加到这样的模式中:
Pattern p = Pattern.compile("[-]?[0-9]*\\.?,?[0-9]+");
要测试模式,您可以使用此在线工具:http://gskinner.com/RegExr/
注意:对于这个工具,如果您正在尝试我的示例,请记得忘记unescape(您只需要取消其中一个 \
)
答案 1 :(得分:3)
您可以尝试使用正则表达式匹配数字
\\d+\\.\\d+
这看起来像
Pattern p = Pattern.compile("\\d+\\.\\d+");
Matcher m = p.matcher("eXamPLestring>1.67>>ReSTOfString");
while (m.find()) {
Float.parseFloat(m.group());
}
答案 2 :(得分:2)
String s = "eXamPLestring>1.67>>ReSTOfString>>0.99>>ahgf>>.9>>>123>>>2323.12";
Pattern p = Pattern.compile("\\d*\\.\\d+");
Matcher m = p.matcher(s);
while(m.find()){
System.out.println(">> "+ m.group());
}
仅提供花车
>> 1.67
>> 0.99
>> .9
>> 2323.12
答案 3 :(得分:2)
这是如何在一行中完成的,
String f = input.replaceAll(".*?([\\d.]+).*", "$1");
如果您确实需要float
,请按以下方式执行此操作:
float f = Float.parseFloat(input.replaceAll(".*?([\\d.]+).*", "$1")),
答案 4 :(得分:1)
你可以使用正则表达式\d*\.?,?\d*
这适用于像1.0和1,0
答案 5 :(得分:1)
看看这个 link ,它们还解释了构建这样一个正则表达式时需要记住的一些事项。
[-+]?[0-9]*\.?[0-9]+
示例代码:
String[] strings = new String[3];
strings[0] = "eXamPLestring>1.67>>ReSTOfString";
strings[1] = "eXamPLestring>0.57>>ReSTOfString";
strings[2] = "eXamPLestring>2547.758>>ReSTOfString";
Pattern pattern = Pattern.compile("[-+]?[0-9]*\\.?[0-9]+");
for (String string : strings)
{
Matcher matcher = pattern.matcher(string);
while(matcher.find()){
System.out.println("# float value: " + matcher.group());
}
}
输出:
# float value: 1.67
# float value: 0.57
# float value: 2547.758
答案 6 :(得分:1)
/**
* Extracts the first number out of a text.
* Works for 1.000,1 and also for 1,000.1 returning 1000.1 (1000 plus 1 decimal).
* When only a , or a . is used it is assumed as the float separator.
*
* @param sample The sample text.
*
* @return A float representation of the number.
*/
static public Float extractFloat(String sample) {
Pattern pattern = Pattern.compile("[\\d.,]+");
Matcher matcher = pattern.matcher(sample);
if (!matcher.find()) {
return null;
}
String floatStr = matcher.group();
if (floatStr.matches("\\d+,+\\d+")) {
floatStr = floatStr.replaceAll(",+", ".");
} else if (floatStr.matches("\\d+\\.+\\d+")) {
floatStr = floatStr.replaceAll("\\.\\.+", ".");
} else if (floatStr.matches("(\\d+\\.+)+\\d+(,+\\d+)?")) {
floatStr = floatStr.replaceAll("\\.+", "").replaceAll(",+", ".");
} else if (floatStr.matches("(\\d+,+)+\\d+(.+\\d+)?")) {
floatStr = floatStr.replaceAll(",", "").replaceAll("\\.\\.+", ".");
}
try {
return new Float(floatStr);
} catch (NumberFormatException ex) {
throw new AssertionError("Unexpected non float text: " + floatStr);
}
}