美文网首页
StringUtils

StringUtils

作者: 程序员小白成长记 | 来源:发表于2020-08-25 15:34 被阅读0次

isBlank vs isEmpty

System.out.println(StringUtils.isBlank("")); // true
System.out.println(StringUtils.isBlank(" "));// true
System.out.println(StringUtils.isEmpty("")); // true
System.out.println(StringUtils.isEmpty(" "));// false

相关文章

网友评论

      本文标题:StringUtils

      本文链接:https://www.haomeiwen.com/subject/iylzjktx.html