Java + JS去除網頁HTML標籤

同樣是工作上用到,在前(Javascript)、後端(Java、JSP)同樣都有的一個需求,就是必須將讀入的字串去除HTML Tag,以下是兩個範例:

var HTML = "";
HTML+= "<p>HTML P Tag String</p>";
HTML+= "<p><a href='/test/link.html'>HTML A Tag String</a></p>";

var htmlTagPattern = /<{1}[^>]{1,}>{1}/g; //HTML Tag Pattern
var htmlSplit = HTML.replace(htmlTagPattern, ""); //移除HTML Tag

console.log("htmlSplit : " , htmlSplit); //輸出htmlSplit :  HTML P Tag StringHTML A Tag String
package CDIT.stanley;
public class trimHTML {
	public static void main(String[] args) {
		String HTML = "";
		HTML+= "<p>HTML P Tag String</p>";
		HTML+= "<p><a href='/test/link.html'>HTML A Tag String</a></p>";
		
		String htmlTagPattern = "<{1}[^>]{1,}>{1}"; //HTML Tag Pattern		
		String htmlSplit = HTML.replaceAll(htmlTagPattern, ""); //移除HTML Tag
		
		System.out.println("htmlSplit : " + htmlSplit); //輸出htmlSplit : HTML P Tag StringHTML A Tag String
	}
}

You may also like...

26,862 Responses

  1. JamesNow表示:

    Buy Cenforce 100mg Online: order cenforce – order cenforce

  2. CharlesDog表示:

    https://viagras.online/# Viagra online price

  3. CharlesDog表示:

    http://kamagra.win/# Kamagra 100mg price

  4. GeorgeSep表示:

    п»їcialis generic: Generic Cialis without a doctor prescription – Tadalafil price

  5. ElmerWes表示:

    п»їkamagra kamagra.win sildenafil oral jelly 100mg kamagra

  6. DavidOwelo表示:

    https://viagras.online/# cheapest viagra

  7. GeorgeSep表示:

    Cialis over the counter: buy cialis online – cheapest cialis

  8. ElmerWes表示:

    Levitra 20 mg for sale Buy Vardenafil 20mg Cheap Levitra online

  9. JamesNow表示:

    Generic Cialis without a doctor prescription: cialist.pro – Generic Cialis without a doctor prescription

  10. TylerPhona表示:

    https://cenforce.pro/# Cenforce 150 mg online

  11. JamesNow表示:

    Kamagra 100mg: kamagra oral jelly – sildenafil oral jelly 100mg kamagra

  12. ElmerWes表示:

    buy viagra here Buy generic 100mg Viagra online Cheap generic Viagra online

  13. Davidtes表示:

    ciprofloxacin over the counter where can i buy cipro online cipro online no prescription in the usa

  14. RandallTaulp表示:

    cost cheap propecia: cost cheap propecia without insurance – cost cheap propecia

  15. WilliamRhype表示:

    https://lisinopril.network/# lisinopril pills 2.5 mg

  16. RandallTaulp表示:

    ciprofloxacin generic price: cipro pharmacy – cipro

  17. Ronaldpsymn表示:

    https://nolvadex.life/# who should take tamoxifen

  18. RandallTaulp表示:

    order generic propecia without insurance: get generic propecia online – order propecia without rx

  19. Ronaldpsymn表示:

    https://ciprofloxacin.tech/# cipro pharmacy

  20. Davidtes表示:

    lisinopril 10 12.5 mg lisinopril 10 mg no prescription zestril 10mg

  21. WilliamRhype表示:

    http://nolvadex.life/# п»їdcis tamoxifen

  22. WilliamRhype表示:

    http://nolvadex.life/# nolvadex for pct

  23. Ronaldpsymn表示:

    http://cytotec.club/# cytotec abortion pill

  24. Davidtes表示:

    cost of generic propecia without a prescription cost cheap propecia online order cheap propecia prices

  25. RandallTaulp表示:

    prinivil 5 mg: lisinopril online uk – lisinopril 100 mg

  26. WilliamRhype表示:

    https://cytotec.club/# Cytotec 200mcg price

  27. Davidtes表示:

    tamoxifen bone pain nolvadex estrogen blocker tamoxifen benefits

  28. RandallTaulp表示:

    tamoxifen postmenopausal: tamoxifen warning – tamoxifen citrate pct

  29. Davidtes表示:

    buying cheap propecia online propecia get propecia price

  30. RandallTaulp表示:

    ciprofloxacin 500 mg tablet price: ciprofloxacin order online – buy cipro

發佈回覆給「Davidtes」的留言 取消回覆

發佈留言必須填寫的電子郵件地址不會公開。