프로그램/script

javascript string extend function

mulderu 2011. 2. 1. 13:55

오랜만에 javascript string 을 ...
String.prototype.toHtml = function (){
	return this.replace(new RegExp("<", "g"), "&lt;")
			   .replace(new RegExp(">", "g"), "&gt;")
			   .replace(new RegExp("\"", "g"), "&quot;");
};

String.prototype.toText = function (){
	return this.replace(new RegExp("<br>", "ig"), "\r\n")
			   .replace(new RegExp("&lt;", "ig"), "<")
			   .replace(new RegExp("&gt;", "ig"), ">")
			   .replace(new RegExp("&amp;", "ig"), "&");
};