아래에서는 이 속성을 사용하여 String 개체에 Trim, LTrim, RTrim 세 가지 메서드를 추가합니다(함수는 VbScript의 동일한 이름의 함수와 동일합니다)
String.prototype.Trim = function()
{
return this.replace(/(^s* )|(s*$)/g , "");
}
String.prototype.LTrim = function()
{
return this.replace(/(^s*)/g , "");
}
String.prototype.Rtrim = function()
{
return this.replace(/(s*$)/g, "");
어때요, 간단합니다. 사용예를 살펴보겠습니다.