2017-05-26
자바스크립트에서는
$.isNumeric or isNaN or 정규식 정도가 있습니다.
previous... 이하
from http://stackoverflow.com/questions/1102891/how-to-check-if-a-string-is-numeric-in-java
NumberUtils.isNumber
or StringUtils.isNumeric
from Apache Commons Lang.
You can also use StringUtils.isNumericSpace
which returns true
for empty strings and ignores internal spaces in the string. (The linked javadocs contain detailed examples for each method.)
'IT > java' 카테고리의 다른 글
enum switch (0) | 2017.09.08 |
---|---|
[read] java call by reference call by value 레퍼런스 (2) | 2016.12.12 |
map 의 .merge ( java 8 lambda) 값 증가 를 간단히 (0) | 2016.09.06 |
json <-> map (0) | 2016.08.17 |
statements vs expressions (구문 vs 표현식) in lambda (0) | 2015.11.09 |