欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java.lang.Character.isDigit()和isLetter()方法

程序员文章站 2024-03-23 14:54:58
...

转自:http://blog.csdn.net/bug_moving/article/details/52740127

使用isDigit判断是否为数字

public static boolean isNumeric(String str){
    for (int i = str.length();--i>=0;){
    if (!Character.isDigit(str.charAt(i))){
        return false;
    }
  }
  return true;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

使用isLetter判断是否为字母

public class Test{
   public static void main(String args[]){
      System.out.println( Character.isLetter('c'));
      System.out.println( Character.isLetter('5'));
   }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

产生的结果:

 true
 false