我是lxml解析的新手,无法管理简单的解析问题。我的xml中的一行看起来像:
The IgM BCR is essential for survival of peripheral B cells [<xref ref-type="bibr" rid="CR34">34</xref>]. In the absence of BTK B cell...
所以,当我执行以下代码时:
e = open('somexml.xml', encoding='utf8')
tree = etree.parse(e)
titles = tree.xpath('/pmc-articleset/article/front/article-meta/title-group/article-title')
for node in titles:
text = tree.xpath('/pmc-articleset/article/body/sec/p')
for node in text:
content = str(node.text).encode("utf-8")
s = str(' '.join(lxml.html.fromstring(content).xpath("//text()")).encode('latin1'))
print (s)
结果如下:
The IgM BCR is essential for survival of peripheral B cells ['
即使我只打印node.text而没有任何“join”命令,结果看起来也很相似。
如何跳过方括号部分并收到完整的字符串?任何帮助将不胜感激!
答案 0 :(得分:3)
]. In the absence of BTK B cell...
是tail
元素的<xref>
属性的值。请参阅http://infohost.nmt.edu/tcc/help/pubs/pylxml/web/etree-view.html。
方括号没什么特别之处;他们只是人物。
使用itertext()
,您可以获取元素及其后代的文本内容。默认情况下会包含tail
个内容。请参阅http://lxml.de/api/lxml.etree._Element-class.html#itertext。
小演示:
from lxml import etree
xml = "<p>TEXT <xref>34</xref>TAIL</p>"
p = etree.fromstring(xml)
print(p.text)
print(''.join(p.itertext()))
print(p.text + p.find("xref").tail)
输出:
TEXT
TEXT 34TAIL
TEXT TAIL
答案 1 :(得分:0)
尝试以下几点:
git status