java – 由逗号分隔的货币值字符串

前端之家收集整理的这篇文章主要介绍了java – 由逗号分隔的货币值字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个字符串,其中包含格式化的货币值,如45,890.00和多个值由逗号分隔,890.00,12,345.00,23,765.34,56,908.50 ..

我想提取并处理所有货币值,但无法找出正确的正则表达式,这就是我所尝试的

public static void main(String[] args) {
    String currencyValues = "45,908.50";
    String regEx = "\\.[0-9]{2}[,]";
    String[] results = currencyValues.split(regEx);
    //System.out.println(Arrays.toString(results));
    for(String res : results) {
        System.out.println(res);
    }
}

这个输出是:

45,890 //removing the decimals as the reg ex is exclusive
12,345
23,765
56,908.50

有人可以帮我这个吗?

解决方法

你需要一个正则表达式“后面看”(?< = regex),它匹配,但消耗:
String regEx = "(?<=\\.[0-9]{2}),";

这是您现在正在使用的测试用例:

public static void main(String[] args) {
    String currencyValues = "45,908.50";
    String regEx = "(?<=\\.[0-9]{2}),"; // Using the regex with the look-behind
    String[] results = currencyValues.split(regEx);
    for (String res : results) {
        System.out.println(res);
    }
}

输出

45,890.00
12,345.00
23,765.34
56,908.50
原文链接:https://www.f2er.com/java/126149.html

猜你在找的Java相关文章