Answers for "js strip_tags"

9

javascript strip html tags from string

var htmlString= "<div>\n <h1>Hello World</h1>\n <p>This is the text that we should get.</p>\n <p>Our Code World &#169; 2017</p>\n </div>";

var stripedHtml = htmlString.replace(/<[^>]+>/g, '');
var decodedStripedHtml = he.decode(stripedHtml);

// Hello World
// This is the text that we should get.
// Our Code World &#169; 2017
console.log(stripedHtml);

// Hello World
// This is the text that we should get.
// Our Code World © 2017
console.log(decodedStripedHtml);
Posted by: Guest on February-18-2020
2

js strip_tags

let strippedString = originalString.replace(/(<([^>]+)>)/gi, "");
Posted by: Guest on October-08-2020
1

strip html tags javascript

originalString.replaceAll(/(<([^>]+)>)/gi, "")
Posted by: Guest on April-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language