本节内容:
substring函数的小例子,从右边获取指定长度的字符串。
例子:
复制代码 代码示例:
/*
从右边获取指定长度的字符串
by www.jb200.com
*/
String.prototype.right = function (length_)
{
var _from = this.length - length_;
if (_from < 0) _from = 0;
return this.substring(this.length - length_, this.length);
};