Java中,回车符是\r 还是 \n 呢,是不是在myeclipse 和dos 中的用法不以样呢?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中,回车符是\r 还是 \n 呢,是不是在myeclipse 和dos 中的用法不以样呢?相关的知识,希望对你有一定的参考价值。
参考技术A 是\r ,\n是换行符。在myeclipse 和dos中,运行是一样的。Java 去除字符中的空格回车符
现状问题 文字有空格与回车符,在小程序上显示效果不好
处理结果:
核心代码:
String s ="";
Pattern p = Pattern.compile("\\\\s*|\\t|\\r|\\n");
/**
* \\n 回车(\\u000a)
* \\t 水平制表符(\\u0009)
* \\s 空格(\\u0008)
* \\r 换行(\\u000d)*/
Matcher m = p.matcher(s);
以上是关于Java中,回车符是\r 还是 \n 呢,是不是在myeclipse 和dos 中的用法不以样呢?的主要内容,如果未能解决你的问题,请参考以下文章