代码:
1 String s = "what's you name?"; 2 // CharSequence cs = "you"; 3 //判断目标字符串对象中是否存在指定的子序列(子字符串) 4 System.out.println(s.contains("you")); 5 //判断指定的charsequence对象是否与当前对象的字符序列一致 6 System.out.println(s.contentEquals("hello")); 7 8 s = "小苹果.mp3"; 9 //判断字符串是否以指定的后缀结尾 10 System.out.println(s.endsWith(".mp3")); 11 //判断字符串是否以指定的前缀开头 12 System.out.println(s.startsWith("小苹果")); 13 //偏移指定位索引之后(索引从0开始),判断字符串是否以指定的前缀开头 14 System.out.println(s.startsWith("苹果",1)); 15 //比较两个字符串是否完全一致(包括大小写) 16 System.out.println("hello".equals("Hello")); 17 //忽略大小写比较两个字符串是否一致 18 System.out.println("hello".equalsIgnoreCase("Hello")); 19 s = ""; // "" != null 20 //判断指定的字符串是否是空字符串(length == 0) 21 System.out.println(s.isEmpty()); 22 //判断当前对象是否与给定参数的正则表达式匹配 23 System.out.println("1325874569".matches("^1[35789]\\d{9}$")); 24 25 Scanner sc = new Scanner(System.in); 26 String i = sc.next(); 27 if(!i.matches("\\d{0,}")){ 28 System.out.println("请重新输入"); 29 }else{ 30 System.out.println(i); 31 }