[Java] isNumeric() 자바에서 문자열이 숫자의 형태인지 검사
자바에서 문자열이 숫자의 형태인지 검사하기 public boolean isNumeric(String input) { try { Double.parseDouble(input); return true; } catch (NumberFormatException e) { return false; } } ... //true System.out.println( isNumeric("42") ); System.out.println( isNumeric("3.14") ); System.out.println( isNumeric("1e5") ); // false System.out.println( isNumeric("A") ); 도움이 되셨다면 공감이나 좋아요 부탁드립니다~♡ 광고를 클릭해주시면 더욱 감사하구요~♡v♡/ 혹시 ..
Programming Language/Java
2019. 1. 8. 20:13
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- MySQL
- Entity Framework Core
- Linux
- Fedora
- 이클립스
- express
- ubuntu
- DART
- high1
- egoverment
- dotnet core
- Eclipse
- Java
- 자바
- 전자정부
- Flutter
- c#
- eGovFrame
- asp.net core
- Spring
- .NET Core
- egov
- JSP
- Windows
- 하이원
- CentOS
- MariaDB
- php
- 스프링
- jQuery
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함