Nodejs String Strip rstrip()

Here you can find the source of rstrip()

Method Source Code

/*//from   w  w w. ja  v  a 2 s.c om

Legal boring crap follows. In simple english, you can use this
code in your own project, be your project commercial or free.
Just be sure to include the license and stuff. The "copyright"
here is just for technical reasons.

Copyright 2011, Philip Peterson.

This file is part of Pumpkinpy.

Pumpkinpy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Pumpkinpy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Pumpkinpy.  If not, see <http://www.gnu.org/licenses/>.

*/

String.prototype.rstrip = function () {
   return this.replace(/\s+$/, "")
};

Related

  1. strip()
    String.prototype.strip = function(){
      var temp = this.rstrip()
      return temp.lstrip()
    
  2. stripBr()
    String.prototype.stripBr = function(){
      return this.replace(/<br\s*\/?>/mg, "");
    
  3. stripEnd(s)
    String.prototype.stripEnd = function (s) {
      var len = this.length-s.length;
      if(this.lastIndexOf(s)==len){
        return this.substring(0, len);
      return this;
    
  4. stripFilePath(path)
    function  {
        if (path.lastIndexOf("file:///") > -1) {
            path = path.substring(path.lastIndexOf("file:///") + 8);
        return path;
    
  5. lstrip()
    String.prototype.lstrip = function(){
      return this.replace(/^\s+/,'')
    
  6. rstrip()
    String.prototype.rstrip = function(){
      return  this.replace(/\s+$/,'')
    
  7. rstrip(chars)
    String.prototype.rstrip = function (chars) {
        let regex = new RegExp(chars + "$");
        return this.replace(regex, "");
    };
    
  8. stripNewline(str)
    String.prototype.stripNewline = function(str){
        var trimLoc = this.indexOf("\r\n");
        if (trimLoc < 0) {
            trimLoc = this.indexOf("\n");
        if (trimLoc < 0) {
            trimLoc = this.indexOf("\r");
        if (trimLoc > 0) {
    ...
    
  9. stripNewlines()
    String.prototype.stripNewlines = function() {
        return this.replace(/[\n\r]/g,"");