java 去掉字符串中的'/'字符

最近发现比较简单的去掉'/'字符居然不能直接用'/'去替。

public class TestString {
    public TestString() {
    }

    public String replace(String a) {
        return a.replaceAll("//u005c", "");
    }

    public static void main(String[] args) {
        TestString t = new TestString();
        System.out.println(t.replace("abcdefg//fajdkl"));
    }

 

posted @ 2006-11-03 20:00  张长胜  阅读(787)  评论(0编辑  收藏  举报