Java 替換字串中的斷行符號分行符號的方法

來源:互聯網
上載者:User

使用Regex進行替換:

程式碼片段:

String documentTxt = EntityUtils.toString(entity,"gbk");//擷取資料
documentTxt=documentTxt.replaceAll("[\\t\\n\\r]", "");//將內容地區的斷行符號換行去除

說明:String類的replaceAll就有正則替換功能。 \t為定位字元 \n為換行 \r為斷行符號

java正則使用:

樣本方法:

複製代碼 代碼如下:public void parseTxt(String content){
Pattern p = Pattern.compile(Config.articlePtn);
Matcher matcher = p.matcher(content);
while(matcher.find()){
System.out.println(matcher.group(1));
}

}

說明:只需記住Pattern類,它的靜態方法complie解析一個Regex產生一個Pattern對象。

然後用模型去匹配字串,得到一個Matcher,通過matcher的find方法遍曆所有的匹配。

group為Regex中的組,及()運算式。group(0)為原字串,gourp(1)為匹配到的第一個組...即匹配到的組的索引從1開始。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.