首页 >web前端 >js教程 >js substring从右边获取指定长度字符串(示例代码)_javascript技巧

js substring从右边获取指定长度字符串(示例代码)_javascript技巧

WBOY
WBOY原创
2016-05-16 17:07:351198浏览

如下所示:

复制代码 代码如下:

 /*

   Get the rightmost substring, of the specified length,

   from a String object.

*/ 

String.prototype.right = function (length_) 



        var _from = this.length - length_; 

        if (_from
        return this.substring(this.length - length_, this.length); 

}; 
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn