[pyar] Expresiones regulares y el "Matches if ... doesn’t match next"

robbie en metasigno.com robbie en metasigno.com
Sab Nov 13 21:54:14 ART 2010


Loco... Hoy es la noche de los museos... Salgan y tomen cervezas!!!!!

------Mensaje original------
De: Roberto Alsina
Remitente: pyar-bounces en python.org.ar
Para: Python Argentina
Responder a: Python Argentina
Asunto: Re: [pyar]Expresiones regulares y el "Matches if ... doesn’t match next"
Enviado: 13 nov, 2010 23:40

On Saturday 13 November 2010 22:11:56 N Cis wrote:
> Osea, no entiendo como hacer que ignore cuando el "/" esta presente.
> 
> Alguna ayuda?.

>>> archivo = "<img src='hola'/>"
>>> re.sub("(<img.*?')>", '\g<1>/>', archivo)
"<img src='hola'/>"
>>> archivo = "<img src='hola'>"
>>> re.sub("(<img.*?')>", '\g<1>/>', archivo)
"<img src='hola'/>"
_______________________________________________
pyar mailing list pyar en python.org.ar
http://listas.python.org.ar/listinfo/pyar

PyAr - Python Argentina - Sitio web: http://www.python.org.ar/


Enviado desde mi BlackBerry® de Claro Argentina


More information about the pyar mailing list