Skip to content

Instantly share code, notes, and snippets.

@quan-vu
Last active September 29, 2022 08:29
Show Gist options
  • Save quan-vu/93ff1721ca27cde93e9c190c453f9b97 to your computer and use it in GitHub Desktop.
Save quan-vu/93ff1721ca27cde93e9c190c453f9b97 to your computer and use it in GitHub Desktop.
Javascript - Clean HTML tags
function stripTags (str) {
return str.replace(/(<([^>]+)>)/gi, "");
}
var str = '<p>This is a <strong style="color: red">string</strong> with some <u>HTML</u> in it.</p>';
var cleaned = stripTags(str);
console.log(cleaned);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment