1. 程式人生 > >java去除首尾空白字元(帶全形)

java去除首尾空白字元(帶全形)

@org.junit.Test
    public void test3() throws IOException {
        String strCom="  以禁止女兵穿低腰褲  ";       //定義字串,帶全形的空格
        String str= StringTool.trim(strCom);          //去除字串前後的空格
        System.out.println("未去除前後空格的字串:"+strCom);
        System.out.println("去除前後空格後的字串:"+str);
        System.out.println("去除前後空格後的字串:"+StringUtils.strip(strCom));
    }

public class StringTool {
    /**
     * 去除字串中所包含的空格(包括:空格(全形,半形)、製表符、換頁符等)
     * @param s
     * @return
     */
    public static String removeAllBlank(String s){
        String result = "";
        if(null!=s && !"".equals(s)){
            result = s.replaceAll("[ *| *| *|//s*]*", "");
        }
        return result;
    }

    /**
     * 去除字串中頭部和尾部所包含的空格(包括:空格(全形,半形)、製表符、換頁符等)
     * @param s
     * @return
     */
    public static String trim(String s){
        String result = "";
        if(null!=s && !"".equals(s)){
            result = s.replaceAll("^[ *| *| *|//s*]*", "").replaceAll("[ *| *| *|//s*]*$", "");
        }
        return result;
    }
}