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,938 Responses

  1. Charleselila表示:

    neurontin capsules: neurontin 900 – neurontin cost in singapore

  2. Richardorele表示:

    zithromax drug: buy zithromax canada – zithromax 250mg

  3. Henryfet表示:

    prednisone without prescription.net: prednisone 21 pack – iv prednisone

  4. Billyved表示:

    https://prednisoned.online/# prednisone buy without prescription

  5. Richardorele表示:

    amoxicillin 500 mg tablet: order amoxicillin online uk – amoxicillin 775 mg

  6. Billyved表示:

    https://doxycyclinea.online/# doxycycline 50mg

  7. MarvinRoave表示:

    doxycycline 500mg where can i get doxycycline doxycycline without prescription

  8. Henryfet表示:

    gabapentin 100mg: buy generic neurontin – neurontin 600

  9. Henryfet表示:

    average cost of generic zithromax: can you buy zithromax online – buy zithromax

  10. Charleselila表示:

    prednisone best price: prednisone 30 – buy prednisone online paypal

  11. Charleselila表示:

    zithromax capsules 250mg: zithromax 500 mg for sale – zithromax for sale online

  12. Billyved表示:

    https://amoxila.pro/# how to buy amoxycillin

  13. Richardorele表示:

    can i purchase amoxicillin online: buy amoxicillin online mexico – amoxicillin canada price

  14. MarvinRoave表示:

    neurontin sale neurontin pills for sale neurontin 300mg

  15. Charleselila表示:

    doxycycline 100mg tablets: doxycycline medication – doxycycline tetracycline

  16. Richardorele表示:

    amoxicillin discount coupon: buy amoxicillin 500mg usa – amoxicillin online without prescription

  17. Henryfet表示:

    amoxicillin 500 mg: purchase amoxicillin 500 mg – amoxicillin 500mg price

  18. MarvinRoave表示:

    neurontin capsules gabapentin 100mg neurontin price india

  19. Billyved表示:

    https://amoxila.pro/# buy amoxicillin 500mg usa

  20. Billyved表示:

    http://amoxila.pro/# buy amoxicillin online uk

  21. Henryfet表示:

    prescription for amoxicillin: buy amoxicillin 500mg online – amoxicillin no prescription

  22. Henryfet表示:

    zithromax z-pak: zithromax online paypal – can you buy zithromax over the counter in australia

  23. DavidThynC表示:

    rxpharmacycoupons no prescription required pharmacy international pharmacy no prescription

  24. Jerometappy表示:

    http://pharmcanada.shop/# canadian family pharmacy

  25. Felipevon表示:

    https://pharmworld.store/# canadian pharmacy coupon code

  26. WilliamThity表示:

    reputable canadian online pharmacies: canadian pharmacy world – adderall canadian pharmacy

  27. DavidThynC表示:

    canadian pharmacy service certified canadian international pharmacy canadian online pharmacy

  28. WilliamThity表示:

    canadian valley pharmacy: canadian pharmacies that deliver to the us – canadian neighbor pharmacy

  29. Jerometappy表示:

    http://pharmcanada.shop/# canadian pharmacy 24h com safe

  30. WilliamThity表示:

    top online pharmacy india: Online medicine home delivery – indian pharmacy

發佈留言

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