python中是否有一些函数用于连接具有相同Element.tag名称的element.text?
示例:
p>
some text
<i>(</i>
<i>something</i>
<i>something</i>
<i>)</i>
some text
<i>proň, zač</i>
the end of paragraph
</p>
我想要的是什么:
p>
some text
<i>(something something)</i>
some text
<i>proň, zač</i>
the end of paragraph
</p>
答案 0 :(得分:1)
python中是否有一些函数用于连接具有相同标签名称的element.text?
不,你必须自己编码。原因是该库处理xml,而不仅仅是xhtml。通常,<tag>a</tag><tag>b</tag>
与<tag>ab</tag>
的含义不同。事实上,即使在html中,合并相邻的<p>
或<block>
标记也会改变文字的含义。