假设我有这样的字符串:
示例字符串>1.67>>ReSTOfString
我的任务是从上面的字符串中只提取 1.67。
我认为正则表达式会很有用,但我不知道如何编写适当的表达式。
假设我有这样的字符串:
示例字符串>1.67>>ReSTOfString
我的任务是从上面的字符串中只提取 1.67。
我认为正则表达式会很有用,但我不知道如何编写适当的表达式。
如果要从 a中提取所有Int
's和Float
'sString
,可以按照我的解决方案进行操作:
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/
注意:对于这个工具,如果您正在尝试我的示例,请记住取消转义(您只需要取消其中一个\
)
以下是如何在一行中做到这一点,
String f = input.replaceAll(".*?([\\d.]+).*", "$1");
如果你真的想要一个float
,下面是你如何在一行中做到这一点:
float f = Float.parseFloat(input.replaceAll(".*?([\\d.]+).*", "$1")),
您可以尝试使用正则表达式匹配数字
\\d+\\.\\d+
这可能看起来像
Pattern p = Pattern.compile("\\d+\\.\\d+");
Matcher m = p.matcher("eXamPLestring>1.67>>ReSTOfString");
while (m.find()) {
Float.parseFloat(m.group());
}
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
您可以使用正则表达式\d*\.?,?\d*
这将适用于像 1.0 和 1,0 这样的浮点数
看看这个链接,他们还解释了在构建这样的正则表达式时需要记住的一些事情。
[-+]?[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
/**
* 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);
}
}