Node.js examples for String:Char
Convert special chars to HTML entities
/**/* w ww. ja v a 2s. c o m*/ * Convert special chars to HTML entities * @addon * @return The string with chars encoded for HTML * @type String */ String.prototype.htmlEnc = function() { var str = this.replace(/&/g,"&"); str = str.replace(/</g,"<"); str = str.replace(/>/g,">"); str = str.replace(/\"/g,"""); str = str.replace(/\n/g,"<br />"); return str; };