是否有一种原生方式(最好不要实现自己的方法)来检查字符串是否可以用Double.parseDouble()
解析?
答案 0 :(得分:53)
org.apache.commons.lang3.math.NumberUtils.isNumber(String)
处理空值,不需要try
/ catch
块。
答案 1 :(得分:49)
您始终可以在try catch块中包装Double.parseDouble()。
try
{
Double.parseDouble(number);
}
catch(NumberFormatException e)
{
//not a double
}
答案 2 :(得分:41)
常见的方法是使用正则表达式检查它,就像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
}
答案 3 :(得分:9)
下面的内容就足够了: -
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
答案 4 :(得分:8)
Google的Guava库提供了一个很好的辅助方法来执行此操作:Doubles.tryParse(String)
。您可以像Double.parseDouble
一样使用它,但如果字符串不解析为double,则返回null
而不是抛出异常。
答案 5 :(得分:6)
所有答案都可以,取决于你想要的学术水平。 如果您希望准确地遵循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处的JavaDoc。