我正在尝试从巨大的xml文件中提取一些特定字段。这是一个例子:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE dblp SYSTEM "dblp.dtd">
<dblp>
<article mdate="2009-09-24" key="journals/jasis/GianoliM09">
<author>Ernesto Gianoli</author>
<author>Marco A. Molina-Montenegro</author>
<title>Insights into the relationship between the <i>h</i>-index and self-citations.</title>
<pages>1283-1285</pages>
<year>2009</year>
<volume>60</volume>
<journal>JASIST</journal>
<number>6</number>
<ee>http://dx.doi.org/10.1002/asi.21042</ee>
<url>db/journals/jasis/jasis60.html#GianoliM09</url>
</article>
<article mdate="2014-09-18" key="journals/iacr/ShiCSL11" publtype="informal publication">
<author>Elaine Shi</author>
<author>T.-H. Hubert Chan</author>
<author>Emil Stefanov</author>
<author>Mingfei Li</author>
<title>blivious RAM with O((log N)<sup>3</sup>) Worst-Case Cost.</title>
<pages>407</pages>
<year>2011</year>
<volume>2011</volume>
<journal>IACR Cryptology ePrint Archive</journal>
<ee>http://eprint.iacr.org/2011/407</ee>
<url>db/journals/iacr/iacr2011.html#ShiCSL11</url>
</article>
<phdthesis mdate="2016-05-04" key="phd/it/Popescu2008">
<author>Razvan Andrei Popescu</author>
<title>Aggregation and adaptation of web services: a semi-automated methodology for the aggregation and adaption of web services.</title>
<year>2008</year>
<school>University of Pisa</school>
<pages>1-206</pages>
<isbn>978-3-8364-6280-8</isbn>
<ee>http://d-nb.info/991165179</ee>
</phdthesis><phdthesis mdate="2007-04-26" key="phd/Tsangaris92">
<author>Manolis M. Tsangaris</author>
<title>Principles of Static Clustering for Object Oriented Databases</title>
<year>1992</year>
<school>Univ. of Wisconsin-Madison</school>
</phdthesis>
<phdthesis mdate="2005-11-30" key="phd/Heuer2002">
<author>Andreas Heuer 0002</author>
<title>Web-Präsenz-Management im Unternehmen</title>
<year>2002</year>
<school>Univ. Trier, FB 4, Informatik</school>
<ee>http://ubt.opus.hbz-nrw.de/volltexte/2004/144/</ee>
</phdthesis>
<mastersthesis mdate="2002-01-03" key="phd/Schulte92">
<author>Christian Schulte</author>
<title>Entwurf und Implementierung eines übersetzenden Systems für das intuitionistische logische Programmieren auf der Warren Abstract Machine.</title>
<year>1991</year>
<school>Universität Karlsruhe, Institut für Logik, Komplexität und Deduktionssysteme</school>
</mastersthesis>
<phdthesis mdate="2002-01-03" key="phd/Hellerstein95">
<author>Joseph M. Hellerstein</author>
<title>Optimization and Execution Techniques for Queries With Expensive Methods</title>
<year>1995</year>
<school>Univ. of Wisconsin-Madison</school>
</phdthesis>
</dblp>
我使用代码here来解析和提取我感兴趣的字段。当我想在第一种情况下提取标题而第二种情况因为{{1 }和<i>h</i>
标记。看来我的代码将它们视为新事件,但不是<sup>3</sup>
标记的一部分,我得到以下结果:
<title>
基本上我得到标题文本,直到解析器遇到一个新标签。
问题是我不知道有多少这种情况(例如,不同的标签),否则我可以尝试手动删除它们。无论如何要处理这种情况吗?
答案 0 :(得分:1)
您需要了解元素内容的lxml数据模型(特别是tail
属性)。这里解释得很好:http://infohost.nmt.edu/tcc/help/pubs/pylxml/web/etree-view.html。
此元素的text
属性的内容
<title>Insights into the relationship between the <i>h</i>-index and self-citations.</title>
是Insights into the relationship between the
。
h
位是text
子元素的<i>
,-index and self-citations.
是同一孩子的tail
。
要获取标题的所有文字内容,您可以使用itertext()
。例如:
from lxml import etree
tree = etree.parse("dblp.xml") # The XML in the question
titles = tree.xpath("//title")
for title in titles:
print ''.join(title.itertext())
输出:
Insights into the relationship between the h-index and self-citations.
blivious RAM with O((log N)3) Worst-Case Cost.
Aggregation and adaptation of web services: a semi-automated methodology for the aggregation and adaption of web services.
Principles of Static Clustering for Object Oriented Databases
Web-Präsenz-Management im Unternehmen
Entwurf und Implementierung eines übersetzenden Systems für das intuitionistische logische Programmieren auf der Warren Abstract Machine.
Optimization and Execution Techniques for Queries With Expensive Methods