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...

15,532 Responses

  1. StevenNub表示:

    amoxicillin 500 mg cost: amoxil com pharm – buy amoxicillin over the counter uk

  2. StevenNub表示:

    buy prednisone online no prescription: Prednisone Without Prescription – prednisone 20mg price in india

  3. BrandenSlomy表示:

    rexall pharmacy amoxicillin 500mg: Com Pharm – amoxicillin 500 mg without prescription

  4. Dereketerm表示:

    can i buy clomid without rx: rex pharm – buy clomid without prescription

  5. BrandenSlomy表示:

    buy priligy: priligy max pharm – priligy max pharm

  6. Dereketerm表示:

    cost generic clomid without dr prescription: clomid – where to get clomid prices

  7. BrandenSlomy表示:

    canadian pharmacy amoxicillin: Amoxicillin for sale – amoxicillin without a prescription

  8. StevenNub表示:

    prednisone 80 mg daily: prednisone – prednisone 1 tablet

  9. StevenNub表示:

    how to buy clomid without rx: clomid online – where can i get clomid pill

  10. StevenNub表示:

    cheap priligy: dapoxetine price – dapoxetine price

  11. StevenNub表示:

    Priligy tablets: max pharm – buy priligy max pharm

  12. Dereketerm表示:

    buy dapoxetine online: cheap priligy – Priligy tablets

  13. Dereketerm表示:

    20 mg prednisone tablet: buy prednisone – prednisone for sale

  14. StevenNub表示:

    dapoxetine online: max pharm – dapoxetine online

  15. BrandenSlomy表示:

    prednisone 20mg tab price: Prednisone Without Prescription – prednisone where can i buy

  16. BrandenSlomy表示:

    can i buy amoxicillin over the counter: amoxil com pharm – amoxicillin 500 mg purchase without prescription

  17. BrandenSlomy表示:

    how to get cheap clomid: clomid online – can you buy generic clomid pills

  18. StevenNub表示:

    prednisone 30 mg tablet: prednisone ray pharm – prednisone 10 mg

  19. Dereketerm表示:

    prednisone 10mg: where to buy prednisone 20mg no prescription – buy prednisone 10mg

  20. StevenNub表示:

    Priligy tablets: priligy maxpharm – dapoxetine price

  21. Dereketerm表示:

    buy priligy max pharm: buy priligy max pharm – max pharm

  22. StevenNub表示:

    cost of prednisone tablets: prednisone – 5 mg prednisone tablets

發佈留言

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