一、函数
function trim(str){ //删除左右两端的空格
return str.replace(/(^\s )|(\s $)/g, "")
}
function ltrim(str){ //删除左边的空格
return str.replace(/(^\s*)/g,"")
}
function rtrim(str){ //删除右边的空格
return str.replace(/(\s*$)/g,"")
}
函数调用 trim(str)
二、js对象的方法
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,"")
}
类中方法调用 str.trim()
三、将公共方法提取到一个或多个公共js文件,需要的时候直接引用;
思路:通过正则表达式进行区配即可用javascript去掉字符串里的所有空格
代码如下:
function Trim(str,is_global) { var result result = str.replace(/(^\s+)|(\s+$)/g,"") if(is_global.toLowerCase()=="g") { result = result.replace(/\s/g,"") } return result}
代码中用到正则表达式,含义就是去掉字符串里的所有空格
正则表通常被用来检索、替换那些符合某个模式(规则)的文本
解释说明:/ pattern /g 是正则字符串的语法,上述代码中主要是这个gg (全文查找出现的所有 pattern) i (忽略大小写) m (多行查找)
<SCRIPT LANGUAGE="JavaScript">
<!--
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, "")
}
//-->
</SCRIPT>