Nodejs String Strip stripStart(s)

Here you can find the source of stripStart(s)

Method Source Code

String.prototype.stripStart = function (s) {
   if(this.indexOf(s)==0){
      return this.substring(s.length, this.length);
   }// w ww  .  java2  s .  co m
   return this;
}

Related

  1. 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) {
    ...
    
  2. stripNewlines()
    String.prototype.stripNewlines = function() {
        return this.replace(/[\n\r]/g,"");
    
  3. stripPunctuation()
    String.prototype.stripPunctuation = function () {
      return this.replace(/\W+/, '');
    
  4. stripScripts()
    String.prototype.stripScripts = function()
        return this.replace(new RegExp('<script[^>]*>([\\S\\s]*?)<\/script>', 'img'), '');
    };
    
  5. stripSlashes()
    function now(){
      return (new Date()).getTime();
    String.prototype.stripSlashes = function(){
        return this.replace(/\\(.)/mg, "$1");
    
  6. stripSubdomain()
    String.prototype.stripSubdomain = function() {
      return this.substr(this.indexOf(config.domainHost),this.length);
    };
    
  7. stripTrailingSlash()
    String.prototype.stripTrailingSlash = function() {
      if (this.substr(-1) === '/') {
        return this.substr(0, this.length - 1);
      return this;
    };
    
  8. stripURL()
    String.prototype.stripURL = function() {
        return this.replace(/[A-Za-z]+\:\/\/+[A-Za-z0-9-_]+.[A-Za-z0-9-_:%&~?\/.=]+/g, "");
    };
    
  9. stripUsername()
    String.prototype.stripUsername = function() {
        return this.replace(/[@]+[A-Za-z0-9-_]+/g, "");
    };