String添加trim,ltrim,rtrim
发布时间:2006-10-14 2:57:27   收集提供:gaoqian
利用javascript中每个对象(Object)的prototype属性我们可以为Javascript中的内置对象添加我们自己的方法和属性。

  以下我们就用这个属性来为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, "");
}
  怎么样,简单吧,下面看一个使用的实例:

$#@60;script language=javascript$#@62;
String.prototype.Trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
} 
 
var s = " leading and trailing spaces "; 
 
window.alert(s + " (" + s.length + ")"); 
 
s = s.Trim(); 
 
window.alert(s + " (" + s.length + ")"); 
 
$#@60;/script$#@62; 

 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50