1

我正在编写一个脚本,需要拆分同时包含 html 标签和文本的字符串。我正在尝试隔离标签并消除文本。

例如,我想要这个:

string = "<b>Text <span>Some more text</span> more text</b>";

像这样拆分:

separation = string.split(/some RegExp/);

并成为:

separation[0] = "<b>";
separation[1] = "<span>";
separation[2] = "</span>";
separation[3] = "</b>";

我真的很感激任何帮助或建议。

4

1 回答 1

7

您可能需要查看String.match

var str = "<b>Text <span>Some more text</span> more text</b>";
var separation = str.match(/<[^]+?>/g);

console.log(separation); // ["<b>", "<span>", "</span>", "</b>"]
于 2012-05-05T18:57:50.423 回答