Nodejs String Strip rstrip(chars)

Here you can find the source of rstrip(chars)

Method Source Code

/**/*from www  . j  a va  2 s.  c o m*/
 * Strip characters at the end of a string.
 *
 * @param   chars   A regex-like element to strip from the end.
 * @return  Stripped string.
 */
String.prototype.rstrip = function (chars) {
    let regex = new RegExp(chars + "$");
    return this.replace(regex, "");
};

Related

  1. 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;
    
  2. stripFilePath(path)
    function  {
        if (path.lastIndexOf("file:///") > -1) {
            path = path.substring(path.lastIndexOf("file:///") + 8);
        return path;
    
  3. lstrip()
    String.prototype.lstrip = function(){
      return this.replace(/^\s+/,'')
    
  4. rstrip()
    String.prototype.rstrip = function () {
       return this.replace(/\s+$/, "")
    };
    
  5. rstrip()
    String.prototype.rstrip = function(){
      return  this.replace(/\s+$/,'')
    
  6. 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) {
    ...
    
  7. stripNewlines()
    String.prototype.stripNewlines = function() {
        return this.replace(/[\n\r]/g,"");
    
  8. stripPunctuation()
    String.prototype.stripPunctuation = function () {
      return this.replace(/\W+/, '');
    
  9. stripScripts()
    String.prototype.stripScripts = function()
        return this.replace(new RegExp('<script[^>]*>([\\S\\s]*?)<\/script>', 'img'), '');
    };