- // 判断一个字符串是否都为数字
- public boolean isDigit(String strNum) {
- return strNum.matches("[0-9]{1,}");
- }
- // 判断一个字符串是否都为数字
- public boolean isDigit(String strNum) {
- Pattern pattern = Pattern.compile("[0-9]{1,}");
- Matcher matcher = pattern.matcher((CharSequence) strNum);
- return matcher.matches();
- }
JAVA 字符串判断
Posted xqash
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA 字符串判断相关的知识,希望对你有一定的参考价值。
以上是关于JAVA 字符串判断的主要内容,如果未能解决你的问题,请参考以下文章