如何检查一个string是可parsing的双?

有没有一个本地的方式(最好不执行自己的方法)来检查一个string是可以用Double.parseDouble()parsing?

通常的做法是用一个正则expression式来检查它,就像在Double.valueOf(String)文档里面所build议的那样。

在那里提供的正则expression式应该包含所有有效的浮点数,所以你不需要摆弄它,因为你最终会错过一些更好的点。

如果你不想这样做, try catch仍然是一个select。

下面是JavaDocbuild议的正则expression式:

 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 } 

像往常一样, Apache可以从Apache Commons-Lang以org.apache.commons.lang3.math.NumberUtils.isNumber(String)的forms得到很好的答案,

处理空值,不需要try / catch块。

您总是可以将Double.parseDouble()包装在try catch块中。

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

像下面的东西应该足够: –

 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 

Google的Guava库提供了一个很好的辅助方法: Doubles.tryParse(String) 。 您可以像Double.parseDouble一样使用它,但是如果string不parsing为double,它将返回null而不是抛出exception。

所有的答案都可以,取决于你想成为怎样的学术。 如果您希望准确地遵循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。