劍指offer五十三之表示數值的字符串
阿新 • • 發佈:2017-10-20
coder str 小數 exc ber 整數 異常 isp offer
一、題目
請實現一個函數用來判斷字符串是否表示數值(包括整數和小數)。例如,字符串"+100","5e2","-123","3.1416"和"-1E-16"都表示數值。 但是"12e","1a3.14","1.2.3","+-5"和"12e+4.3"都不是。
二、思路
方法一:正則表達式
方法二:拋異常
三、代碼
方法一:
public class Solution { public boolean isNumeric(char[] str) { String string = String.valueOf(str); return string.matches("[\\+-]?[0-9]*(\\.[0-9]*)?([eE][\\+-]?[0-9]+)?"); } }View Code
方法二:
public class Solution { public boolean isNumeric(char[] str) { try { double re = Double.parseDouble(new String(str)); } catch (NumberFormatException e) { return false; } return true; } }View Code
--------------------------------------------
參考鏈接:
https://www.nowcoder.com/questionTerminal/6f8c901d091949a5837e24bb82a731f2
劍指offer五十三之表示數值的字符串