1. 程式人生 > >使用StringUtils.isNumeric(String str) 判斷string是否為數字

使用StringUtils.isNumeric(String str) 判斷string是否為數字

< P>檢查字串是否只包含Unicode數字。

*小數點不是Unicode數字,返回false。</P>

 <p> <程式碼> null <程式碼>將返回 false 。

*空字串(“”)將返回 true </p>

方法實現: StringUtils.class

   * <pre>
     * StringUtils.isNumeric(null)   = false
     * StringUtils.isNumeric("")     = true


     * StringUtils.isNumeric("  ")   = false
     * StringUtils.isNumeric("123")  = true
     * StringUtils.isNumeric("12 3") = false
     * StringUtils.isNumeric("ab2c") = false
     * StringUtils.isNumeric("12-3") = false
     * StringUtils.isNumeric("12.3") = false
     * </pre>

 *@ PARAM str是要檢查的字串,可能為空

*@ 如果只包含數字,並且為非空 , 返回<code>true</code>

需要注意的是如果 str = ""  (入參為空字串的情況下) 返回的是true .(根據需求檢查入參str = "" 的情況)

public static boolean isNumeric(String str) {
        if (str == null) {
            return false;
        }
        int sz = str.length();
        for (int i = 0; i < sz; i++) {
            if (Character.isDigit(str.charAt(i)) == false) {
                return false;
            }
        }
        return true;
    }