1. 程式人生 > >Java 去掉字串中的換行符回車符等

Java 去掉字串中的換行符回車符等

去掉一個字串中的換行符、回車符等,將連續多個空格替換成一個空格

String string = "this just     a test"
Pattern p = Pattern.compile("\t|\r|\n");
Matcher m = p.matcher(string);
string = m.replaceAll("");
string = string.replaceAll(" +", " ");