分別去字串前後,左邊,右邊空格
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,"")}
為String物件增加一個trim方法。
以後就可以這樣使用:
" abc ";
s = s.trim(); // s是個String,可以使用剛定義的trim方法。
alert(s);