私はPythonのlxml.objectify
ライブラリを使用して読んでいるXMLファイルを持っています。 (より良い方法がされてxml.comment[1]
動作するようには思えないのですか?)私はコメントを取得することができるよlxml.objectifyコメントの内容を取得
<data>
<!--Contents 1-->
<some_empty_tag/>
<!--Contents 2-->
</data>
:
私は、XMLコメントの内容を取得する方法を見つけることではありませんよ。
xml = objectify.parse(the_xml_file).getroot()
for c in xml.iterchildren(tag=etree.Comment):
print c.???? # how do i print the contets of the comment?
# print c.text # does not work
# print str(c) # also does not work
正しい方法は何ですか。
私はxmlライブラリでコメントを解析できるとは思っていません。定義上、それらはxml構造体の一部ではなく、いつでもすべてのツールで無視することができます。 – Daenyth