我正在编写一个脚本,需要拆分同时包含 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>";
我真的很感激任何帮助或建议。