30秒学会 JavaScript 片段 · 2019年9月22日

30秒学会 JavaScript 片段 – stripHTMLTags

Removes HTML/XML tags from string.

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

代码片段

const stripHTMLTags = str => str.replace(/<[^>]*>/g, '');

使用样例

stripHTMLTags('<p><em>lorem</em> <strong>ipsum</strong></p>'); // 'lorem ipsum'