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

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 11:23:17
Original
1379 people have browsed it

本文实例讲述了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程序设计有所帮助。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template