Skip to content

JS 正则匹配 HTML 标签并去除

Published: at 05:13 PMSuggest Changes

需求

富文本编辑器包含 html 标签,期望去掉 html 标签只保留文本

正则

<.+?>

js 代码

const regex = /<.+?>/gm;
const str = `<!DOCTYPE HTML>
<html>
<head>
<title>#Persistent</title>
<meta http-equiv=\\"Content-Type\\" content=\\"text/html; charset=iso-8859-1\\">
<meta http-equiv=\\"X-UA-Compatible\\" content=\\"IE=edge\\">
<link href=\\"../static/theme.css\\" rel=\\"stylesheet\\" type=\\"text/css\\"/>
<script src=\\"../static/content.js\\" type=\\"text/javascript\\"></script>
</head>
<body>
</html>
`;
str.replace(regex, '')

测试样本

<!DOCTYPE HTML>
<html>
<head>
<title>#Persistent</title>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">
<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">
<link href=\"../static/theme.css\" rel=\"stylesheet\" type=\"text/css\"/>
<script src=\"../static/content.js\" type=\"text/javascript\"></script>
</head>
<body>
<br />
<h1>#Persistent</h1>
<p>Keeps a script permanently running (that is, until the user closes it or <a href=\"ExitApp.htm\">ExitApp</a> is encountered).</p>
<pre class=\"Syntax\">#Persistent</pre>
<p>If this directive is present anywhere in the script, that script will stay running after the auto-execute section (top part of the script) completes. This is useful in cases where a script contains <a href=\"SetTimer.htm\">timers</a> and/or <a href=\"Menu.htm\">custom menu items</a> but not <a href=\"../Hotkeys.htm\">hotkeys</a>, <a href=\"../Hotstrings.htm\">hotstrings</a>, or any use of <a href=\"OnMessage.htm\">OnMessage()</a> or <a href=\"Gui.htm\">Gui</a>.</p>
<p>If this directive is added to an existing script, you might want to change some or all occurrences of <a href=\"Exit.htm\">Exit</a> to be <a href=\"ExitApp.htm\">ExitApp</a>. This is because <a href=\"Exit.htm\">Exit</a> will not terminate a persistent script; it terminates only the <a href=\"../misc/Threads.htm\">current thread</a>.</p>
<p>In v1.0.16+, this directive also makes a script single-instance. To override this or change the way single-instance behaves, see <a href=\"_SingleInstance.htm\">#SingleInstance</a>.</p>
<h3>Related</h3>
<p><a href=\"_SingleInstance.htm\">#SingleInstance</a>, <a href=\"SetTimer.htm\">SetTimer</a>, <a href=\"Menu.htm\">Menu</a>, <a href=\"Exit.htm\">Exit</a>, <a href=\"ExitApp.htm\">ExitApp</a></p>
<h3>Example</h3>
<pre class=\"NoIndent\">#Persistent</pre>
</body>
</html>

Previous Post
JavaScript 从 HTML 字符串中提取文本
Next Post
优雅地创建 1 到 N 的数组