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 htmlToPlainString(String str) {
        if (str == null) {
            return "";
        }

        String retValue = str;

        retValue = retValue.replaceAll("<br/>", "\n");
        retValue = retValue.replaceAll("&nbsp;", " ");
        retValue = retValue.replaceAll("&nbsp", " ");
        retValue = retValue.replaceAll("&acute;", "`");
        // retValue = retValue.replaceAll("&apos;", "\'");
        retValue = retValue.replaceAll("\\&#39;", "\'");
        retValue = retValue.replaceAll("&quot;", "\"");
        retValue = retValue.replaceAll("&gt;", ">");
        retValue = retValue.replaceAll("&lt;", "<");
        retValue = retValue.replaceAll("&amp;", "&");

        return retValue;
    }
}