Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
static String UnescapeHTML(String html) {
html = html.replace("<", "<");
html = html.replace(">", ">");
html = html.replace(""", "\"");
html = html.replace("&", "&");
return html;
}
}