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

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

WBOY
WBOYoriginal
2016-05-16 17:07:351167parcourir

如下所示:

复制代码 代码如下:

 /*

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

}; 
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn