3

假设我有这样的字符串:

示例字符串>1.67>>ReSTOfString

我的任务是从上面的字符串中只提取 1.67。

我认为正则表达式会很有用,但我不知道如何编写适当的表达式。

4

7 回答 7

9

如果要从 a中提取所有Int'sFloat'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/

注意:对于这个工具,如果您正在尝试我的示例,请记住取消转义(您只需要取消其中一个\

于 2013-06-22T01:28:20.920 回答
3

以下是如何在一行中做到这一点,

String f = input.replaceAll(".*?([\\d.]+).*", "$1");

如果你真的想要一个float,下面是你如何在一行中做到这一点:

float f = Float.parseFloat(input.replaceAll(".*?([\\d.]+).*", "$1")),
于 2013-06-22T02:59:51.773 回答
3

您可以尝试使用正则表达式匹配数字

\\d+\\.\\d+

这可能看起来像

Pattern p = Pattern.compile("\\d+\\.\\d+");
Matcher m = p.matcher("eXamPLestring>1.67>>ReSTOfString");
while (m.find()) {
    Float.parseFloat(m.group());
}
于 2012-09-02T09:58:24.390 回答
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
于 2012-09-02T09:58:07.220 回答
1

您可以使用正则表达式\d*\.?,?\d*这将适用于像 1.0 和 1,0 这样的浮点数

于 2012-09-02T09:58:23.600 回答
1

看看这个链接,他们还解释了在构建这样的正则表达式时需要记住的一些事情。

[-+]?[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
于 2012-09-02T10:20:14.853 回答
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);
    }
}
于 2019-03-30T20:19:45.650 回答