Java:字符分割

Java:字符分割

// 分割方法
String str = "|||||||||||";
log.info(StringUtils.split(str,'|').length + ""); // org.apache.commons.lang3.StringUtils 分割主动去掉空的
//输出0
log.info(StrUtil.split(str,'|').size() + ""); // cn.hutool.core.util.StrUtil 不会去掉空的
// 输出12

posted @ 2022-03-29 10:04  整合侠  阅读(152)  评论(0编辑  收藏  举报