StringUtils 字符串工具

一、工具类代码展示

继承了org.apache.commons.lang3.StringUtils 的类。

工具类已经上传附件自行下载:

java 复制代码
/**
 * 字符串工具类
 *
 * @author Lion Li
 */
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class StringUtils extends org.apache.commons.lang3.StringUtils {

    public static final String SEPARATOR = ",";

    /**
     * 获取参数不为空值
     *
     * @param str defaultValue 要判断的value
     * @return value 返回值
     */
    public static String blankToDefault(String str, String defaultValue) {
        return StrUtil.blankToDefault(str, defaultValue);
    }

    /**
     * * 判断一个字符串是否为空串
     *
     * @param str String
     * @return true:为空 false:非空
     */
    public static boolean isEmpty(String str) {
        return StrUtil.isEmpty(str);
    }

    /**
     * * 判断一个字符串是否为非空串
     *
     * @param str String
     * @return true:非空串 false:空串
     */
    public static boolean isNotEmpty(String str) {
        return !isEmpty(str);
    }

    /**
     * 去空格
     */
    public static String trim(String str) {
        return StrUtil.trim(str);
    }

    /**
     * 截取字符串
     *
     * @param str   字符串
     * @param start 开始
     * @return 结果
     */
    public static String substring(final String str, int start) {
        return substring(str, start, str.length());
    }

    /**
     * 截取字符串
     *
     * @param str   字符串
     * @param start 开始
     * @param end   结束
     * @return 结果
     */
    public static String substring(final String str, int start, int end) {
        return StrUtil.sub(str, start, end);
    }

    /**
     * 格式化文本, {} 表示占位符<br>
     * 此方法只是简单将占位符 {} 按照顺序替换为参数<br>
     * 如果想输出 {} 使用 \\转义 { 即可,如果想输出 {} 之前的 \ 使用双转义符 \\\\ 即可<br>
     * 例:<br>
     * 通常使用:format("this is {} for {}", "a", "b") -> this is a for b<br>
     * 转义{}: format("this is \\{} for {}", "a", "b") -> this is {} for a<br>
     * 转义\: format("this is \\\\{} for {}", "a", "b") -> this is \a for b<br>
     *
     * @param template 文本模板,被替换的部分用 {} 表示
     * @param params   参数值
     * @return 格式化后的文本
     */
    public static String format(String template, Object... params) {
        return StrUtil.format(template, params);
    }

   ........省略代码

二、测试代码

  • 判断空
  • 截取字符
  • 格式化
  • 转换大小写
  • 是否匹配字符
  • 拼接字符

具体测试详见注释:

java 复制代码
package com.ruoyi.demo;

import cn.hutool.core.lang.Console;
import com.ruoyi.common.utils.StringUtils;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.function.Function;

/**
 * <简述>
 * <详细描述>
 *
 * @author syf
 * @date 2024年08月14日 10:26
 */
public class TestStringUtils {
    public static void main(String[] args) {
        test();

    }

   static void test(){
        // 判断是否为空
       String hello = StringUtils.blankToDefault("1", "hello" );
       Console.log("blankToDefault->{}", hello);
       String hell1o = StringUtils.blankToDefault(null, "hello" );
       Console.log("blankToDefault->{}", hell1o);
       // 判断是否为空
       Console.log("isNotEmpty->{}", StringUtils.isEmpty("1"));
       Console.log("isNotEmpty->{}", StringUtils.isEmpty(""));
       Console.log("isNotEmpty->{}", StringUtils.isEmpty(null));
       //去除前后空格
       Console.log("trim->{}", StringUtils.trim("  hello  "));

       //截取字符串 前闭后开规则
       Console.log("substring->{}", StringUtils.substring("hello", 1, 2));

       //格式化文本
       Console.log("format->{}", StringUtils.format("hello {}", "world"));
       Console.log("format->{}", StringUtils.format("hello \\{}", "world"));
       //是否http
       Console.log("ishttp->{}", StringUtils.ishttp("http://www.baidu.com"));


       //转驼峰
       Console.log("toCamelCase->{}", StringUtils.toCamelCase("hello_world"));
       //转下划线
       Console.log("toUnderScoreCase->{}", StringUtils.toUnderScoreCase("helloWorld"));


       //分割 返回数组
       Console.log("splitList->{}", StringUtils.splitList("1,2,3"));
       //转换数组
       Console.log("str2List->{}", StringUtils.str2List("1,2,3", ",", true, true));
       //转换集合
       Console.log("str2Set->{}", StringUtils.str2Set("1,2,3", ","));

       //匹配字符
       Console.log("isMatch->{}", StringUtils.isMatch("query/**", "query/allList"));
       //匹配
       Console.log("matches->{}", StringUtils.matches("hello", Arrays.asList("hello", "world")));
       //是否包含 第一个参数是否在第二个参数里面
       Console.log("splitTo->{}", StringUtils.inStringIgnoreCase("hello", "hello", "world"));
       //是否包含
       Console.log("containsAnyIgnoreCase->{}", StringUtils.containsAnyIgnoreCase("hello", "hello", "world"));

       //填充  左边填充
       Console.log("padl->{}", StringUtils.padl(1, 2));
       //填充  左边填充 自定义字符
       Console.log("padl->{}", StringUtils.padl("1", 2, '*'));

       //分割  返回集合
       Console.log("padl->{}", StringUtils.splitTo("1,2,3,", ",", new Function<Object, Object>() {
           @Override
           public Object apply(Object o) {
               return o + "拼接字符";
           }
       }));



   }
}

返回结果:

java 复制代码
blankToDefault->1
blankToDefault->hello
isNotEmpty->false
isNotEmpty->true
isNotEmpty->true
trim->hello
substring->e
format->hello world
format->hello {}
ishttp->true
toCamelCase->helloWorld
toUnderScoreCase->hello_world
splitList->[1, 2, 3]
str2List->[1, 2, 3]
str2Set->[1, 2, 3]
isMatch->true
matches->true
splitTo->true
containsAnyIgnoreCase->true
padl->01
padl->*1
padl->[1拼接字符, 2拼接字符, 3拼接字符, 拼接字符]
相关推荐
喵叔哟16 分钟前
重构代码中引入外部方法和引入本地扩展的区别
java·开发语言·重构
尘浮生22 分钟前
Java项目实战II基于微信小程序的电影院买票选座系统(开发文档+数据库+源码)
java·开发语言·数据库·微信小程序·小程序·maven·intellij-idea
不是二师兄的八戒1 小时前
本地 PHP 和 Java 开发环境 Docker 化与配置开机自启
java·docker·php
爱编程的小生1 小时前
Easyexcel(2-文件读取)
java·excel
带多刺的玫瑰1 小时前
Leecode刷题C语言之统计不是特殊数字的数字数量
java·c语言·算法
计算机毕设指导62 小时前
基于 SpringBoot 的作业管理系统【附源码】
java·vue.js·spring boot·后端·mysql·spring·intellij-idea
Gu Gu Study2 小时前
枚举与lambda表达式,枚举实现单例模式为什么是安全的,lambda表达式与函数式接口的小九九~
java·开发语言
Chris _data2 小时前
二叉树oj题解析
java·数据结构
牙牙7052 小时前
Centos7安装Jenkins脚本一键部署
java·servlet·jenkins
paopaokaka_luck2 小时前
[371]基于springboot的高校实习管理系统
java·spring boot·后端