Nodejs String Strip stripEnd(s)

Here you can find the source of stripEnd(s)

Method Source Code

String.prototype.stripEnd = function (s) {
   var len = this.length-s.length;
   if(this.lastIndexOf(s)==len){
      return this.substring(0, len);
   }//  ww  w.ja v a  2s.  co m
   return this;
}

Related

  1. strip()
    String.prototype.strip = function(){
        return this.replace(/(^\s+|\s$)/gi, '');
    };
    
  2. strip()
    String.prototype.strip = function() {
            var str = String( this );
            if ( !str ) {
                return "";
            var startidx = 0;
            var lastidx = str.length - 1;
            while( ( startidx < str.length ) && ( str.charAt( startidx ) == ' ' ) ){
                startidx++;
    ...
    
  3. strip()
    String.prototype.strip = String.prototype.strip || function () {
      return this.replace(/^\s+|\s+$/g, '');
    };
    
  4. strip()
    String.prototype.strip = function(){
      var temp = this.rstrip()
      return temp.lstrip()
    
  5. stripBr()
    String.prototype.stripBr = function(){
      return this.replace(/<br\s*\/?>/mg, "");
    
  6. stripFilePath(path)
    function  {
        if (path.lastIndexOf("file:///") > -1) {
            path = path.substring(path.lastIndexOf("file:///") + 8);
        return path;
    
  7. lstrip()
    String.prototype.lstrip = function(){
      return this.replace(/^\s+/,'')
    
  8. rstrip()
    String.prototype.rstrip = function () {
       return this.replace(/\s+$/, "")
    };
    
  9. rstrip()
    String.prototype.rstrip = function(){
      return  this.replace(/\s+$/,'')