[Python] Estrarre stringa da stringa

Marco Mariani birbag a gmail.com
Mer 29 Set 2010 16:38:25 CEST


On 29 September 2010 16:17, Nicola Larosa <nico a teknico.net> wrote:

> franco93it wrote:
> > Mi puoi fare un esempio di estrazione come devo fare io con lxml?
>
> Ecco un paio d'esempi. Attenzione che usano entrambi XPath, che è una
> sintassi potente, ma non immediata, per identificare tag nei markup
> basati su XML:
>
> http://bytes.com/topic/python/answers/790508-parsing-html
>
> http://blog.ianbicking.org/2007/09/24/lxmlhtml/
>


Piu' familiare:

In [4]: import lxml.html

In [5]: doc = lxml.html.parse('http://www.google.com').getroot()

In [6]: for el in doc.cssselect('title'):
   ...:     print el.text_content()
   ...:
   ...:
Google
-------------- parte successiva --------------
Un allegato HTML è stato rimosso...
URL: http://lists.python.it/pipermail/python/attachments/20100929/352944e2/attachment.htm 


Maggiori informazioni sulla lista Python