30秒学会 JavaScript 片段 · 2023年7月28日

30秒学会 JavaScript 片段 – Strip HTML tags

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'

翻译自:https://www.30secondsofcode.org/js/s/strip-html-tags