学习使用 String.isBlank()方法确定给定的字符串是空白还是空或仅包含空格。 isBlank()方法已添加到 Java 11 中。
要检查给定的字符串甚至没有空格,请使用 String.isEmpty()
方法。
isBlank()方法
如果给定的字符串为空或仅包含空格代码点,则此方法返回 true
,否则返回 false
。
它使用 Character.isWhitespace(char) 方法来确定空白字符。
/** * returns - true if the string is empty or contains only white space codepoints * - otherwise false */ public boolean isBlank()
isBlank()示例
检查给定字符串是否为空的Java程序。
public class Main { public static void main(String[] args) { System.out.println( "ABC".isBlank() ); //false System.out.println( " ABC ".isBlank() ); //false System.out.println( " ".isBlank() ); //true System.out.println( "".isBlank() ); //true } }
程序输出。
false false true true
isBlank()与isEmpty()
两种方法都用于检查Java中的空白或空字符串。两种方法之间的区别在于,当且仅当字符串长度为0时, isEmpty()方法返回 true
。
isBlank()方法仅检查非空白字符。它不检查字符串长度。
public class Main { public static void main(String[] args) { System.out.println( "ABC".isBlank() ); //false System.out.println( " ".isBlank() ); //true System.out.println( "ABC".isEmpty() ); //false System.out.println( " ".isEmpty() ); //false } }
程序输出。
false true false false
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦