Skip to content

Instantly share code, notes, and snippets.

@Sanchithasharma
Created February 5, 2021 09:00
Show Gist options
  • Save Sanchithasharma/1688e0309d5725fe8ca636246713b7ad to your computer and use it in GitHub Desktop.
Save Sanchithasharma/1688e0309d5725fe8ca636246713b7ad to your computer and use it in GitHub Desktop.
Convert HTML text to plain text
var myHTML= "<div><h1>Jimbo.</h1>\n<p>That's what she said</p></div>";
var strippedHtml = myHTML.replace(/<[^>]+>/g, '');
// Jimbo.
// That's what she said
console.log(stripedHtml);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment