Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {

    public static String htmlToText(String str) {
        str = str.replace("<br />", "\n");
        str = str.replace("<br/>", "\n");
        str = str.replace("&nbsp;&nbsp;", "\t");
        str = str.replace("&nbsp;", " ");
        str = str.replace("&#39;", "\\");
        str = str.replace("&quot;", "\\");
        str = str.replace("&gt;", ">");
        str = str.replace("&lt;", "<");
        str = str.replace("&amp;", "&");

        return str;
    }
}