其他分享
首页 > 其他分享> > org.springframework.util.StringUtils

org.springframework.util.StringUtils

作者:互联网

字符串判断工具

// 判断字符串是否为 null,或 ""。注意,包含空白符的字符串为非空
boolean empty = StringUtils.isEmpty("");
System.out.println(empty);//true
// 判断字符串是否已指定内容开头。忽略大小写
boolean b1 = StringUtils.startsWithIgnoreCase("abc", "Ab");
System.out.println(b1);//true
// 判断字符串是否是以指定内容结束。忽略大小写
boolean b = StringUtils.endsWithIgnoreCase("abc", "Bc");
System.out.println(b);//true
// 是否包含空白符
boolean b2 = StringUtils.containsWhitespace("123 456");
System.out.println(b2);//true
// 判断字符串是否包含实际内容,也就是 Not Blank
boolean b3 = StringUtils.hasText(" ");
System.out.println(b3);//false
// 判断字符串非null且长度不为0,即,Not Empty
boolean b4 = StringUtils.hasLength(" ");
System.out.println(b4);//true
// 判断字符串指定索引处是否包含一个子串。
boolean b5 = StringUtils.substringMatch("abcdef", 2, "cde");
System.out.println(b5);//true
// 计算一个字符串中指定子串的出现次数
int i = StringUtils.countOccurrencesOf("abcabca", "ab");
System.out.println(i);//2

  

标签:System,util,字符串,boolean,println,org,StringUtils,out
来源: https://www.cnblogs.com/ooo0/p/15867117.html