자바 isNumeric()

1 개요[ | ]

자바 isNumeric()
자바 문자열이 숫자인지 확인
  • Double 형으로 정상 파싱되면 숫자라고 본다.
public class MyClass {
    public static boolean isNumeric(String input) {
        try {
            Double.parseDouble(input);
        }
        catch (NumberFormatException e) {
            return false;
        }
        return true;
    }

    public static void main(String args[]) {
        // true
        System.out.println( isNumeric("42") );
        System.out.println( isNumeric("3.14") );
        System.out.println( isNumeric("1e5") );
        
        // false
        System.out.println( isNumeric("A") );
    }
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}