Skip to main content

stripHTMLTags

TS JS Deno

Removes HTML/XML tags from string.

Use a regular expression to remove HTML/XML tags from a string.

typescript
const stripHTMLTags = (str) => str.replace(/<[^>]*>/g, "");
typescript
stripHTMLTags("<p><em>lorem</em> <strong>ipsum</strong></p>"); // 'lorem ipsum'