Nodejs HTML Strip stripHtml()

Here you can find the source of stripHtml()

Method Source Code

?
// Extension method stripHtml for string object
String.prototype.stripHtml = function () {
    return this.replace(new RegExp(/<[^>]+>/g), "");
};

Related

  1. stripHtml()
    String.prototype.stripHtml = function() {
       var tmp = document.createElement("DIV");
       tmp.innerHTML = this;
       return tmp.textContent || tmp.innerText || "";
    };
    
  2. stripHtml()
    String.prototype.stripHtml = function () {
        var _self = this.replace(/(<([^>]+)>)/ig, '');
        return _self;
    
  3. 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");
    
  4. stripHtml()
    String.prototype.stripHtml = function () {
      return this.replace(/<(?:.|\n)*?>/gm, '');
    };
    
  5. stripHtml()
    String.prototype.stripHtml = function () {
      "use strict";
      var htmlRegex = /(<([^>]+)>)/ig;
      return this.replace(htmlRegex, '');
    };
    
  6. stripTags()
    String.prototype.stripTags = function()
        return this.replace(/<\/?[^>]+>/gi, '');
    };
    
  7. stripTags()
    String.prototype.stripTags = function () {
      return this.replace(/(<([^>]+)>)/ig, "");
    };
    
  8. stripTags()
    String.prototype.stripTags = function(){
      var entity = {
        quot: '"',
        lt: '<',
        gt: '>',
        nbsp: ' '
      };
      return function ( ) {
        return this.replace(/&([^&;]+);/g,
    ...
    
  9. stripTags()
    String.prototype.stripTags = function() {
        var div = document.createElement("div");
        div.innerHTML = this.br2nl();
        return div.textContent || div.innerText || "";
    };