//원하는 케릭터형 모드 Replace
String.prototype.trim = function()
{
return this.replace(/(^\s*)|(\s*$)/gi, "");
}
String.prototype.replaceAll = function(str1, str2)
{
var temp_str = "";
if(this.trim() != "" && str1 != str2)
{
temp_str = this.trim();
while(temp_str.indexOf(str1) > -1)
{
temp_str = temp_str.replace(str1, str2);
}
}
return temp_str;
}