欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java中替换HTML标签的方法代码

程序员文章站 2024-02-22 17:23:46
1、替换html标签 复制代码 代码如下:replaceall("\\&[a-za-z]{0,9};", "").replaceall("<[^>]*>...

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、运行结果如下

打印替换后的字符串:    
    序号 

    李四 

    赵六