首页 > 代码库 > 对字符串做预处理 、 工具类

对字符串做预处理 、 工具类

/**
     * 对字符串做预处理
     * \s 匹配空格、制表符、换页符等空白字符
     */
    public static String pretreatString(String str) {
        return str.replaceAll("\\s*", "");
    }

对字符串做预处理 、 工具类