Heim >Backend-Entwicklung >Python-Tutorial >python使用正则表达式分析网页中的图片并进行替换的方法

python使用正则表达式分析网页中的图片并进行替换的方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-06 11:23:171380Durchsuche

本文实例讲述了python使用正则表达式分析网页中的图片并进行替换的方法。分享给大家供大家参考。具体分析如下:

这段代码分析网页中的所有图片表单python使用正则表达式分析网页中的图片并进行替换的方法,分析后为其前后添加相应的修饰标签,并添加到图片的超级链接。

代码如下:

result = value.replace("[ page ]","").replace('  ',u' ')
p=re.compile(r'''(python使用正则表达式分析网页中的图片并进行替换的方法]*?\bsrc[\s\t\r\n]*=[\s\t\r\n]*["']?[\s\t\r\n]*([^\s\t\r\n"']*)[^]*?/?[\s\t\r\n]*>)''',re.IGNORECASE)
result = p.sub(r'''\1''',result)

希望本文所述对大家的Python程序设计有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn