我正试图找出一种方法来解析带有自定义标签的html文件:
[custom tag="id"]
以下是我正在使用的文件示例:
<p>This is an <em>amazing</em> example. </p>
<p>Such amazement, <span>many wow.</span> </p>
<p>Oh look, a wild [custom tag="amaze"] appears.</p>
We need maor embeds <a href="http://youtu.be/F5nLu232KRo"> bro
我想要的(在一个理想的世界中)是回归是一个元素列表):
List foundElements = [text, custom tag, text, link, text]
上述列表中的元素包含:
文字:
<p>This is an <em>amazing</em> example. </p>
<p>Such amazement, <span>many wow.</span> </p>
<p>Oh look, a wild [custom tag="amaze"] appears.</p>
We need maor embeds
自定义标记:
[custom tag="amaze"]
链接:
<a href="http://youtu.be/F5nLu232KRo">
文字:
appears.</p>We need maor embeds
我尝试了什么: