Heim > Fragen und Antworten > Hauptteil
Es gibt einen HTML-Code wie folgt:
<p class="col-9 d-inline-block text gray mb-2 pr-4">
My <em>Python</em> Examples
</p>
Was soll ich tun, wenn ich xpath zum Extrahieren meiner Python-Beispiele verwenden möchte?
淡淡烟草味2017-05-18 10:59:45
要多看帮助文档!
//p[@class="col-9 d-inline-block text gray mb-2 pr-4"]/text()
天蓬老师2017-05-18 10:59:45
参考我的这个回答:/q/10...
不过我又发现了个新方法,p_dom.xpath("string()")
,可以直接取出内容作为一个完整的字符串;
然后就是lxml.etree
中的方法:etree.tostring(p_dom, method='text')
,不过还是要根据需求来选择。