在lxml中,可以使用strip_text
方法來處理XML文檔中的空白和換行符。strip_text
方法可以移除XML文檔中所有元素的空白和換行符,使得XML文檔中的內容更加整潔。下面是一個使用strip_text
方法的示例代碼:
from lxml import etree
# 讀取XML文檔
tree = etree.parse('example.xml')
# 移除XML文檔中所有元素的空白和換行符
etree.strip_text(tree)
# 輸出處理后的XML文檔
print(etree.tostring(tree, pretty_print=True).decode())
在上面的示例代碼中,我們首先使用etree.parse
方法讀取了一個名為example.xml
的XML文檔,然后調用strip_text
方法移除了XML文檔中所有元素的空白和換行符,最后使用etree.tostring
方法輸出處理后的XML文檔。