一聚教程网:一个值得你收藏的教程网站

热门教程

java中替换去除字符串中的空格/回车/换行符/制表符

时间:2022-11-14 23:25:38 编辑:袖梨 来源:一聚教程网

用String对象的方法replaceAll就可以了!
replaceAll(String regex, String replacement)
使用给定的 replacement 字符串替换此字符串匹配给定的正则表达式的每个子字符串。

示例代码:

代码如下 复制代码

public class T3 {
public static void main(String args[])
{
String str="aa bb cc"; System.out.println(str.replaceAll(" ", ""));
}}

去掉一个字符串首尾的空格

代码如下 复制代码

public class Format {

public static String trim(String s) {
int i = s.length();// 字符串最后一个字符的位置
int j = 0;// 字符串第一个字符
int k = 0;// 中间变量
char[] arrayOfChar = s.toCharArray();// 将字符串转换成字符数组
while ((j < i) && (arrayOfChar[(k + j)] <= ' '))
++j;// 确定字符串前面的空格数
while ((j < i) && (arrayOfChar[(k + i - 1)] <= ' '))
--i;// 确定字符串后面的空格数
return (((j > 0) || (i < s.length())) ? s.substring(j, i) : s);// 返回去除空格后的字符串
}

public static void main(String[] args) {
String s = trim(" hello ");
System.out.println(s);
}
}

下面再分享一个替换字符串中的所有空格

代码如下 复制代码

import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @author lei
* 2011-9-2
*/
public class StringUtils {

public static String replaceBlank(String str) {
String dest = "";
if (str!=null) {
Pattern p = Pattern.compile("s*|t|r|n");
Matcher m = p.matcher(str);
dest = m.replaceAll("");
}
return dest;
}
public static void main(String[] args) {
System.out.println(StringUtils.replaceBlank("just do it!"));
}
/*-----------------------------------

笨方法:String s = "你要去除的字符串";

1.去除空格:s = s.replace('s','');

2.去除回车:s = s.replace('n','');

这样也可以把空格和回车去掉,其他也可以照这样做。

注:n 回车(u000a)
t 水平制表符(u0009)
s 空格(u0008)
r 换行(u000d)*/
}

热门栏目