1
我使用BeautifulSoup解析XML:讓BeautifulSoup榮譽的xml:空間= 「保存」
In [64]: b = bs4.BeautifulSoup('<xml><t xml:space="preserve"> </t><t xml:space="preserve"> A </t></xml>', 'xml')
In [65]: b.find_all('t')
Out[65]: [<t xml:space="preserve"> </t>, <t xml:space="preserve"> A </t>]
結果,5位被壓縮成1的第一t
標籤,儘管xml:space="preserve"
屬性。
有沒有辦法讓BeautifulSoup尊重xml:space="preserve"
而不是摺疊空格?