Nodejs HTML Strip stripTags()

Here you can find the source of stripTags()

Method Source Code

String.prototype.stripTags = function () {
       var str = this;
       var pos1 = str.indexOf('<');

    if (pos1 == -1) return str;
    else {//w  w  w .j  a  va  2s  .c o  m
        var pos2 = str.indexOf('>', pos1);
        if (pos2 == -1) return str;
        return (str.substr(0, pos1) + str.substr(pos2+1)).stripTags();
    }
}

Related

  1. stripTags()
    String.prototype.stripTags = function()
        return this.replace(/<\/?[^>]+>/gi, '');
    };
    
  2. stripTags()
    String.prototype.stripTags = function () {
      return this.replace(/(<([^>]+)>)/ig, "");
    };
    
  3. stripTags()
    String.prototype.stripTags = function(){
      var entity = {
        quot: '"',
        lt: '<',
        gt: '>',
        nbsp: ' '
      };
      return function ( ) {
        return this.replace(/&([^&;]+);/g,
    ...
    
  4. stripTags()
    String.prototype.stripTags = function() {
        var div = document.createElement("div");
        div.innerHTML = this.br2nl();
        return div.textContent || div.innerText || "";
    };
    
  5. stripTags()
    String.prototype.stripTags = function() {
      return this.replace(/(<([^>]+)>)/ig, '');
    
  6. striptags()
    String.prototype.striptags = function() {
      return this.replace(/(<.*?>)/g).replace(/undefined/g,'?');