js的trim
String.prototype.Ltrim=function()
{
//用正则表达式将前空格
//用空字符串替代。
returnthis.replace(/(^\s*)/g,"");
};
String.prototype.Rtrim=function()
{
//用正则表达式将后空格
//用空字符串替代。
returnthis.replace(/(\s*$)/g,"");
};
String.prototype.trim=function()
{
//用正则表达式将前后空格
//用空字符串替代。
returnthis.replace(/(^\s*)|(\s*$)/g,"");
};
varste="aaaabb";
alert("@"+ste.Ltrim()+"@");
alert("@"+ste.Rtrim()+"@");
alert("@"+ste.trim()+"@");
相关推荐
山水沐光 2020-05-26
peterwzc 2020-03-17
lidengfengboke 2017-02-22
niuyongaiai 2011-10-28
不要皱眉 2016-09-26
qianhaohong 2015-10-11
守love唯诺 2013-10-01
yoyoshadow 2013-06-03
gongg0 2013-01-21
samulelin 2012-10-27
李湘华 2012-10-11
人生若只如初见 2012-05-10