Java HTML Clean cleanHtml(String str)

Here you can find the source of cleanHtml(String str)

Description

clean Html

License

Open Source License

Declaration

public static String cleanHtml(String str) 

Method Source Code

//package com.java2s;

public class Main {
    public static String cleanHtml(String str) {
        str = str.replaceAll("\"", "");
        str = str.replaceAll("<param ", "");
        str = str.substring(0, str.length() - 1);
        return str;
    }/*w  w w .  j ava2  s  . c o  m*/
}

Related

  1. cleanHtml(String html)
  2. cleanHTML(String input)
  3. cleanHTML(String s)
  4. cleanHtml(String s)
  5. cleanHtmlTag(String content)
  6. cleanHtmlTag(String htmlText)
  7. cleanHTMLText(String sText)