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

  1. MarvinRoave表示:

    neurontin 100 mg cost 2000 mg neurontin purchase neurontin

  2. Richardorele表示:

    buy doxycycline cheap: doxycycline 100mg price – buy doxycycline hyclate 100mg without a rx

  3. Henryfet表示:

    zithromax 500 mg lowest price drugstore online: zithromax price south africa – buy zithromax online cheap

  4. Richardorele表示:

    20mg prednisone: buy prednisone 5mg canada – buy prednisone online australia

  5. Charleselila表示:

    amoxicillin in india: can you buy amoxicillin over the counter – amoxicillin 500mg no prescription

  6. Henryfet表示:

    neurontin 800 mg tablets: neurontin 4 mg – neurontin prices generic

  7. MarvinRoave表示:

    prednisone uk price prednisone 50 mg for sale buy prednisone online usa

  8. Henryfet表示:

    doxycycline online: doxy 200 – where can i get doxycycline

  9. Billyved表示:

    https://zithromaxa.store/# zithromax 250 mg tablet price

  10. MarvinRoave表示:

    zithromax buy online can you buy zithromax over the counter in canada purchase zithromax z-pak

  11. Billyved表示:

    https://zithromaxa.store/# zithromax buy

  12. MarvinRoave表示:

    zithromax capsules can i buy zithromax over the counter in canada zithromax 500mg

  13. Henryfet表示:

    where can i get prednisone over the counter: order prednisone online canada – buy prednisone 10 mg

  14. Henryfet表示:

    doxycycline hyclate: doxycycline hyclate – order doxycycline

  15. Charleselila表示:

    neurontin 100mg tablet: neurontin brand name in india – buy neurontin 100 mg canada

  16. Richardorele表示:

    cost of neurontin 600 mg: gabapentin – neurontin 300mg

  17. Henryfet表示:

    amoxicillin 500mg price in canada: generic amoxil 500 mg – buy amoxicillin online with paypal

  18. Billyved表示:

    http://prednisoned.online/# can i buy prednisone online without a prescription

  19. MarvinRoave表示:

    doxycycline 50 mg doxycycline 200 mg doxycycline vibramycin

  20. Richardorele表示:

    doxy 200: doxycycline 150 mg – doxycycline generic

  21. Billyved表示:

    http://prednisoned.online/# prednisone medicine

  22. MarvinRoave表示:

    buy zithromax without prescription online zithromax 250 mg australia can you buy zithromax online

  23. Henryfet表示:

    buy prednisone 50 mg: how to get prednisone tablets – buy prednisone 1 mg mexico

  24. Henryfet表示:

    purchase neurontin online: buy neurontin canadian pharmacy – neurontin india

  25. MarvinRoave表示:

    neurontin 214 neurontin 300 mg price buy neurontin

  26. Henryfet表示:

    neurontin pills for sale: where can i buy neurontin from canada – medicine neurontin capsules

  27. Charleselila表示:

    how can i get prednisone: 5mg prednisone – prednisone canada pharmacy

  28. Billyved表示:

    https://zithromaxa.store/# zithromax over the counter uk

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

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