检查字符串在Java中是否只有Unicode数字或空格

为了检查字符串在Java中是否只有unicode位数或空格,我们使用isDigit()方法和charAt()带有决策语句的方法。

isDigit(int codePoint)方法确定特定字符(Unicode codePoint)是否为数字。它返回一个布尔值,为true或false。

声明-java.lang.Character.isDigit()方法的声明如下-

public static boolean isDigit(int codePoint)

charAt()方法返回给定索引处的字符值。它属于Java中的String类。索引必须在0到length()-1之间。

声明-java.lang.String.charAt()方法的声明如下-

public char charAt(int index)

让我们看一个程序,检查Java中的String是否只有unicode数字或空格。

示例

public class Example {
   boolean check(String s) {
    if (s == null) // checks if the String is null {
      return false;
    }
      int len = s.length();
      for (int i = 0; i < len; i++) {
         //检查字符是否不是数字而不是空格
            if ((Character.isDigit(s.charAt(i)) == false) && (s.charAt(i) != ' ')) {
            return false; // if it is not any of them then it returns false
         }
      }
      return true;
   }
   public static void main(String [] args) {
      Example e = new Example();
      String s = "0090"; // has only digits so it will return true
      String s1 = "y o y"; // has spaces but also has letters so it will return false
      System.out.println("String "+s+" has only unicode digits or spaces: "+e.check(s));
      System.out.println("String "+s1+" has only unicode digits or spaces: "+e.check(s1));
   }
}

输出结果

String 0090 has only unicode digits or spaces: true
String y o y has only unicode digits or spaces: false