Nodejs HTML Strip stripTags()

Here you can find the source of stripTags()

Method Source Code

String.prototype.stripTags = function () {
  return this.replace(/(<([^>]+)>)/ig, "");
};

Related

  1. stripHtml()
    String.prototype.stripHtml = function() {
      return this.replace(/<[^>]+>/g, "");
    };
    console.assert("<p>Shoplifters of the World <em>Unite</em>!</p>".stripHtml() == "Shoplifters of the World Unite!");
    console.assert("1 &lt; 2".stripHtml() == "1 &lt; 2");
    
  2. stripHtml()
    String.prototype.stripHtml = function () {
      return this.replace(/<(?:.|\n)*?>/gm, '');
    };
    
  3. stripHtml()
    String.prototype.stripHtml = function () {
      "use strict";
      var htmlRegex = /(<([^>]+)>)/ig;
      return this.replace(htmlRegex, '');
    };
    
  4. stripHtml()
    ?
    String.prototype.stripHtml = function () {
        return this.replace(new RegExp(/<[^>]+>/g), "");
    };
    
  5. stripTags()
    String.prototype.stripTags = function()
        return this.replace(/<\/?[^>]+>/gi, '');
    };
    
  6. stripTags()
    String.prototype.stripTags = function(){
      var entity = {
        quot: '"',
        lt: '<',
        gt: '>',
        nbsp: ' '
      };
      return function ( ) {
        return this.replace(/&([^&;]+);/g,
    ...
    
  7. stripTags()
    String.prototype.stripTags = function() {
        var div = document.createElement("div");
        div.innerHTML = this.br2nl();
        return div.textContent || div.innerText || "";
    };
    
  8. stripTags()
    String.prototype.stripTags = function() {
      return this.replace(/(<([^>]+)>)/ig, '');
    
  9. stripTags()
    String.prototype.stripTags = function () {
           var str = this;
           var pos1 = str.indexOf('<');
        if (pos1 == -1) return str;
        else {
            var pos2 = str.indexOf('>', pos1);
            if (pos2 == -1) return str;
            return (str.substr(0, pos1) + str.substr(pos2+1)).stripTags();