标签:return ace ret string 空格 this 定义函数 on() ring
1.字符串去除左右空格
继承形式
// 除去左右空格
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, "");
}
自定义函数形式
// 除去左空格;
function ltrim(s){
return s.replace(/(^\s*)/g, "");
}
// 除去右空格;
function rtrim(s){
return s.replace(/(\s*$)/g, "");
}
// 除去左右空格;
function trim(s){
return s.replace(/(^\s*)|(\s*$)/g, "");
}
标签:return ace ret string 空格 this 定义函数 on() ring
原文地址:http://www.cnblogs.com/victory820/p/6906921.html