Node.js examples for String:HTML String
Unescape Html Char
String.prototype.unescapeHtmlChar=function(){ var tmp = this.toString(); tmp = tmp.replace("<","<"); tmp = tmp.replace(">",">"); /*tmp = tmp.replace("<","<"); tmp = tmp.replace("<","<");/*from w ww . j a va 2 s . c o m*/ tmp = tmp.replace("<","<");*/ return tmp; }