本篇文章主要是對js substring從右邊獲取指定長度字符串的示例代碼進行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助
如下所示: 代碼如下: /* Get the rightmost substring, of the specified length, from a String object. */ String.prototype.right = function (length_) { var _from = this.length - length_; if (_from < 0) _from = 0; return this.substring(this.length - length_, this.length); };