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

  1. Henryfet表示:

    zithromax online usa: purchase zithromax online – how to get zithromax over the counter

  2. Richardorele表示:

    order amoxicillin online no prescription: order amoxicillin online uk – how to buy amoxycillin

  3. Charleselila表示:

    amoxicillin online pharmacy: over the counter amoxicillin canada – cost of amoxicillin 875 mg

  4. Billyved表示:

    http://zithromaxa.store/# zithromax prescription online

  5. Billyved表示:

    https://prednisoned.online/# purchase prednisone 10mg

  6. MarvinRoave表示:

    doxycycline 100mg tablets doxycycline hyc 100mg buy doxycycline online without prescription

  7. Billyved表示:

    http://doxycyclinea.online/# order doxycycline 100mg without prescription

  8. Henryfet表示:

    zithromax 500mg price in india: zithromax buy online – buy zithromax 500mg online

  9. MarvinRoave表示:

    buy amoxicillin 500mg online can you buy amoxicillin over the counter in canada amoxicillin where to get

  10. Henryfet表示:

    generic doxycycline: order doxycycline online – buy generic doxycycline

  11. Henryfet表示:

    buy zithromax without presc: zithromax buy – zithromax over the counter uk

  12. Billyved表示:

    https://amoxila.pro/# how much is amoxicillin prescription

  13. MarvinRoave表示:

    zithromax cost australia generic zithromax azithromycin azithromycin zithromax

  14. Billyved表示:

    http://doxycyclinea.online/# odering doxycycline

  15. Charleselila表示:

    how to buy doxycycline online: doxycycline tetracycline – doxycycline tablets

  16. Richardorele表示:

    doxycycline prices: doxycycline vibramycin – generic for doxycycline

  17. Henryfet表示:

    zithromax 250 mg pill: zithromax cost uk – zithromax buy

  18. Billyved表示:

    http://gabapentinneurontin.pro/# neurontin 800 mg capsules

  19. Richardorele表示:

    prednisone 20mg online without prescription: buy prednisone online usa – prednisone

  20. MarvinRoave表示:

    doxycycline hyc doxycycline without prescription doxycycline medication

  21. Henryfet表示:

    prednisone 20mg tablets where to buy: prednisone 20mg nz – can you buy prednisone without a prescription

  22. Henryfet表示:

    prednisone 54899: prednisone 50 mg tablet canada – prescription prednisone cost

  23. Charleselila表示:

    order prednisone: where can i get prednisone – prednisone 60 mg daily

  24. Charleselila表示:

    zithromax for sale cheap: zithromax online no prescription – zithromax 1000 mg pills

  25. Richardorele表示:

    buy zithromax without presc: zithromax prescription – zithromax online no prescription

  26. Henryfet表示:

    prednisone 50 mg tablet cost: prednisone 10 mg – buy 40 mg prednisone

  27. Richardorele表示:

    amoxil pharmacy: amoxicillin 500mg capsules price – generic amoxicillin 500mg

  28. Charleselila表示:

    buy amoxicillin online uk: amoxicillin 500mg capsules uk – amoxicillin capsule 500mg price

  29. Henryfet表示:

    neurontin 100 mg tablets: neurontin 800 mg price – neurontin price comparison

  30. Henryfet表示:

    zithromax antibiotic without prescription: buy zithromax online with mastercard – zithromax 250 mg tablet price

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

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