摘要: 最近发现比较简单的去掉'/'字符居然不能直接用'/'去替。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("abcd 阅读全文
posted @ 2006-11-03 20:00 张长胜 阅读(787) 评论(0) 推荐(0) 编辑