Java工具类04StringUtils常用操作
1.字符串操作(常用) 1.1commons-lang3 <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version></dependency> https://www.cnblogs.com/hahajava/p/9993491.html 常用操作 1.1.1判空 StringUtils.isEmpty();StringUtils.isNotEmpty(); 1.1.2以--结尾,开始 //判断结尾是否相同System.out.println(StringUtils.endsWith("abcdef", "def"));//判断结尾是否相同,不区分大小写System.out.println(StringUtils.endsWithIgnoreCase("abcdef", "Def"));//判断开始部分是否与二参数相同System.out.println(StringUtils.startsWith("中国共和国人民", "中国"));//判断开始部分是否与二参数相同。不区分大小写System.out.println(StringUtils.startsWithIgnoreCase("中国共和国人民", "中国"));