如何检查字符串是否可解析为双精度? [重复]

问题描述 投票:0回答:6

是否有一种本机方法(最好不实现您自己的方法)来检查字符串是否可以使用

Double.parseDouble()
进行解析?

java string parsing floating-point
6个回答
73
投票

Apache
,像往常一样,从
Apache Commons-Lang
得到了很好的答案,形式为
NumberUtils.isCreatable(String)
.

手柄

null
,无需
try
/
catch
块。


70
投票

您始终可以将

Double.parseDouble()
包装在 try catch 块中。

try
{
  Double.parseDouble(number);
}
catch(NumberFormatException e)
{
  // not a double
}

52
投票

常见的方法是使用正则表达式进行检查,就像

Double.valueOf(String)
文档中也建议的那样。

那里提供的正则表达式(或下面包含的)应该涵盖所有有效的浮点情况,因此您不需要摆弄它,因为您最终会错过一些更好的点。

如果您不想这样做,

try catch
仍然是一个选择。

JavaDoc 建议的正则表达式如下:

final String Digits     = "(\\p{Digit}+)";
final String HexDigits  = "(\\p{XDigit}+)";
// an exponent is 'e' or 'E' followed by an optionally 
// signed decimal integer.
final String Exp        = "[eE][+-]?"+Digits;
final String fpRegex    =
    ("[\\x00-\\x20]*"+ // Optional leading "whitespace"
    "[+-]?(" +         // Optional sign character
    "NaN|" +           // "NaN" string
    "Infinity|" +      // "Infinity" string

    // A decimal floating-point string representing a finite positive
    // number without a leading sign has at most five basic pieces:
    // Digits . Digits ExponentPart FloatTypeSuffix
    // 
    // Since this method allows integer-only strings as input
    // in addition to strings of floating-point literals, the
    // two sub-patterns below are simplifications of the grammar
    // productions from the Java Language Specification, 2nd 
    // edition, section 3.10.2.

    // Digits ._opt Digits_opt ExponentPart_opt FloatTypeSuffix_opt
    "((("+Digits+"(\\.)?("+Digits+"?)("+Exp+")?)|"+

    // . Digits ExponentPart_opt FloatTypeSuffix_opt
    "(\\.("+Digits+")("+Exp+")?)|"+

    // Hexadecimal strings
    "((" +
    // 0[xX] HexDigits ._opt BinaryExponent FloatTypeSuffix_opt
    "(0[xX]" + HexDigits + "(\\.)?)|" +

    // 0[xX] HexDigits_opt . HexDigits BinaryExponent FloatTypeSuffix_opt
    "(0[xX]" + HexDigits + "?(\\.)" + HexDigits + ")" +

    ")[pP][+-]?" + Digits + "))" +
    "[fFdD]?))" +
    "[\\x00-\\x20]*");// Optional trailing "whitespace"

if (Pattern.matches(fpRegex, myString)){
    Double.valueOf(myString); // Will not throw NumberFormatException
} else {
    // Perform suitable alternative action
}

12
投票

Google 的 Guava 库提供了一个很好的辅助方法来执行此操作:

Doubles.tryParse(String)
。您可以像
Double.parseDouble
一样使用它,但如果字符串未解析为双精度数,它会返回
null
而不是抛出异常。


11
投票

像下面这样的东西就足够了:-

String decimalPattern = "([0-9]*)\\.([0-9]*)";  
String number="20.00";  
boolean match = Pattern.matches(decimalPattern, number);
System.out.println(match); //if true then decimal else not  

9
投票

所有答案都可以,具体取决于您想要的学术程度。 如果您希望准确遵循 Java 规范,请使用以下内容:

private static final Pattern DOUBLE_PATTERN = Pattern.compile(
    "[\\x00-\\x20]*[+-]?(NaN|Infinity|((((\\p{Digit}+)(\\.)?((\\p{Digit}+)?)" +
    "([eE][+-]?(\\p{Digit}+))?)|(\\.((\\p{Digit}+))([eE][+-]?(\\p{Digit}+))?)|" +
    "(((0[xX](\\p{XDigit}+)(\\.)?)|(0[xX](\\p{XDigit}+)?(\\.)(\\p{XDigit}+)))" +
    "[pP][+-]?(\\p{Digit}+)))[fFdD]?))[\\x00-\\x20]*");

public static boolean isFloat(String s)
{
    return DOUBLE_PATTERN.matcher(s).matches();
}

此代码基于 Double 处的 JavaDocs。

© www.soinside.com 2019 - 2024. All rights reserved.