【Java】将字符串中的 / 替换成 \

    @Test
    public void testReplace(){
        String str1 = "fifi/faf/faf/";
        System.out.println(str1.replaceAll("/", "\\\\"));
    }

 

posted @ 2021-03-08 15:29  AirCL  阅读(308)  评论(0编辑  收藏  举报