将string字符串中的换行符进行替换

Posted xiaofengshan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将string字符串中的换行符进行替换相关的知识,希望对你有一定的参考价值。

/**
* 方法名称:replaceBlank
* 方法描述: 将string字符串中的换行符进行替换为""
*
*/
public static String replaceBlank(String str) {
String dest = "";
if (str != null) {
Pattern p = Pattern.compile(" | | ");
Matcher m = p.matcher(str);
dest = m.replaceAll("");
}
return dest;
}

以上是关于将string字符串中的换行符进行替换的主要内容,如果未能解决你的问题,请参考以下文章

无法替换 php 中的回车符和换行符

去除string中的换行符

去除string中的换行符

shell 如何将空格替换成;

java replace方法

正则表达式 - 替换字符串中的特定换行符