1、替換HTML標簽
代碼如下:
replaceAll("\\&[a-zA-Z]{0,9};", "").replaceAll("<[^>]*>", "\n\t")
源碼如下:
代碼如下:
/**
* 字符串替換
*/
package com.you.model;
/**
* HTML標簽替換
* @author YHD
* @version
*/
public class StrReplace {
/**
* @param args
*/
public static void main(String[] args)
{
String str = " <table border='1' cellpadding='1' cellspacing='1'><tr><th rowspan='2'>序號</th><th colspan='2'>李四</th><th>趙六</th></tr><table>";
/**
* 替換HTML標簽
*/
String subStr = str.replaceAll("\\&[a-zA-Z]{0,9};", "").replaceAll("<[^>]*>", "\n\t");
/**
* 打印替換後的字符串
*/
System.out.println("打印替換後的字符串:" + subStr);
}
}
2、運行結果如下
打印替換後的字符串:
序號
李四
趙六