正則表達式匹配連續多個空格或tab空格

Pattern p = Pattern.compile("\\s{2,}|\t"); Matcher m = p.matcher(str); String strNoBlank = m.replaceAll(" "); System.out.println(strNoBlank);
相關文章
相關標籤/搜索