欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

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

程序员文章站 2022-04-04 13:03:09
...
如下所示:
复制代码 代码如下:

/*

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);

};
相关标签: js substring