java中转义字符(回车\r\n)的替换 反转义

代码演示

  1. maven 依赖:


    commons-lang
    commons-lang
    2.6


  1. 案例代码:
import org.apache.commons.lang.StringEscapeUtils;

public class Demo {
    public static void main(String[] args) {
        String a = "hello \\r\\n world";
        System.out.println(a);
        System.out.println(StringEscapeUtils.unescapeJava(a));
    }
}
  1. 输出结果:
hello \r\n world
hello 
 world

参考

  • https://blog.csdn.net/joshuaxx316/article/details/47760785/

你可能感兴趣的:(java中转义字符(回车\r\n)的替换 反转义)