//문자 배열 가져오기
String.prototype.ToCharArray=function()
{
return this.split("")
}
//N개의 동일한 문자열 가져오기
String.prototype.Repeat=function(num)
{
var tmpArr=[];
for(var i=0;i
}
//역순
String.prototype.Reverse=function()
{
return this.split("").reverse( ) .join("");
}
//숫자인지 테스트
String.prototype.IsNumeric=function()
{
var tmpFloat=parseFloat(this); 🎜 > if(isNaN(tmpFloat)) return false;
var tmpLen=this.length-tmpFloat.toString().length;
return tmpFloat "0".Repeat(tmpLen)==this; }
//정수인지 테스트
String.prototype.IsInt=function()
{
if(this=="NaN") return false
return this== parseInt(this ).toString();
}
// 여러 공백을 하나의 공백으로 결합
String.prototype.resetBlank = function()
{
return this.replace(/s /g ," ");
}
//왼쪽 여백 제거
String.prototype.LTrim = function()
{
return this.replace(/^s /g, "") ;
}
//오른쪽 여백 제거
String.prototype.RTrim = function()
{
return this.replace(/s $/g,"") ;
}
// 양쪽 공백 제거
String.prototype.trim = function()
{
return this.replace(/(^s )|(s $) /g,"");
}
// 예약된 숫자
String.prototype.getNum = function()
{
return this.replace(/[^d]/g, "");
}
//예약된 문자
String.prototype.getEn = function()
{
return this.replace(/[^A-Za-z]/g ,"");
}
//중국어 유지
String.prototype.getCn = function()
{
return this.replace(/[^u4e00-u9fa5uf900-ufa2d]/ g,"");
}
//바이트 길이 가져오기
String.prototype.getRealLength = function()
{
return this.replace(/[^x00-xff] /g,"--" ).length;
}
//왼쪽부터 지정된 길이의 문자열 자르기
String.prototype.left = function(n)
{
return this.slice(0,n) ;
}
//지정된 길이의 문자열을 오른쪽부터 자릅니다.
String.prototype.right = function(n)
{
return this. Slice(this.length-n);
}
//HTML 인코딩
String.prototype.HTMLEncode = function()
{
var re = this; [/x26/g,/x3C/g,/x3E/g,/x20/g];
var q2 = ["&","
"," "] for(var i =0;i
return re; //유니코드 변환
String.prototype.ascW = function( )
var strText = ""
for (var i=0; i
}