javascript string extend function
오랜만에 javascript string 을 ... String.prototype.toHtml = function (){ return this.replace(new RegExp("", "g"), ">") .replace(new RegExp("\"", "g"), """); }; String.prototype.toText = function (){ return this.replace(new RegExp(" ", "ig"), "\r\n") .replace(new RegExp("<", "ig"), "") .replace(new RegExp("&", "ig"), "&"); };