欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

非法字符空字符的过滤

程序员文章站 2024-02-08 18:24:52
...
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * <p>
 * Description:字符串处理工具类
 * </p>
 *
 * @author dailei
 * @version V1.0.0
 * @className StringUtils
 * @date 2017/5/23
 */
public class StringUtils
{
    /**
     * 如果数据异常,去掉空,回车,tab的异常字符
     * @param str 需要转化的字符串
     * @return 目标字符串
     */
    public static String replaceBlank(String str)
    {
        String dest = "";
        if (str != null)
        {
            Pattern p = Pattern.compile("\\s*|\t|\r|\n");
            Matcher m = p.matcher(str);
            dest = m.replaceAll("");
        }
        return dest;
    }
}