knu project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
623 B

package kr.co.kihyun.text.hml;
public class HtmlUtil {
public static String tagFilter(String s) {
String temp = s;
temp = temp.replaceAll("<>", "");
temp = temp.replaceAll("<t>", "<td>");
temp = temp.replaceAll("<<td>", "<td>");
temp = temp.replaceAll("</>", "");
temp = temp.replaceAll("</t>", "</td>");
temp = temp.replaceAll("</td>>", "</td>");
temp = temp.replaceAll("</td>", "</td><td>");
temp = temp.replaceAll("<td><td", "<td");
temp = temp.replaceAll("</td><td></tr>", "</td></tr>");
temp = temp.replaceAll("<tbody>", "");
temp = temp.replaceAll("</tbody>", "");
return temp;
}
}