2014-06-30 17:35阅读: 397评论: 0推荐: 0

为JS字符类型添加trim方法

JS字符串本身并不没有提供常用的trim方法,我们可以通过修改String原形来添加此方法,我们就可以直接调用此方法了:

复制代码
String.prototype.trim = function(){return this.replace(/(^\s*)|(\s*$)/g, '')}
String.prototype.leftTrim = function(){return this.replace(/(^\s*)/g, '')}
String.prototype.rigthTrim = function(){return this.replace(/(\s*$)/g, '')}
var str = "  123 ";
alert("原始长度:" + str.length);//6
alert("trim后长度:" + str.trim().length);//3
alert("leftTrim长度:" + str.leftTrim().length);//4
alert("rigthTrim长度:" + str.rigthTrim().length);//5
复制代码
posted @   铁皮鸭子  阅读(397)  评论(0编辑  收藏  举报
编辑推荐:
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
阅读排行:
· DeepSeek V3 两周使用总结
· 回顾我的软件开发经历(1)
· C#使用yield关键字提升迭代性能与效率
· 低成本高可用方案!Linux系统下SQL Server数据库镜像配置全流程详解
· 4. 使用sql查询excel内容
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起