List of utility methods to do HTML Strip
stripTags()String.prototype.stripTags = function() return this.replace(/<\/?[^>]+>/gi, ''); }; | |
stripTags()String.prototype.stripTags = function () { return this.replace(/(<([^>]+)>)/ig, ""); }; | |
stripTags()String.prototype.stripTags = function(){ var entity = { quot: '"', lt: '<', gt: '>', nbsp: ' ' }; return function ( ) { return this.replace(/&([^&;]+);/g, ... | |
stripTags()String.prototype.stripTags = function() { var div = document.createElement("div"); div.innerHTML = this.br2nl(); return div.textContent || div.innerText || ""; }; | |
stripTags()String.prototype.stripTags = function() { return this.replace(/(<([^>]+)>)/ig, ''); | |
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(); | |
striptags()String.prototype.striptags = function() { return this.replace(/(<.*?>)/g).replace(/undefined/g,'?'); |