当前位置:Gxlcms > Python > Python正则表达式总结

Python正则表达式总结

时间:2021-07-01 10:21:17 帮助过:74人阅读

search(pattern,string,flags=0):在一个字符串中查找匹配

finddall(pattern,string,flags=0):找到匹配,返回所有匹配部分的列表

sub(pattern,repl,string,count=0,flags=0):将字符串中匹配正则表达式的部分替换为其他值

split(pattern,string,maxsplit=0,flags=0):根据匹配分割字符串, 返回分割字符串组成的列表

import urllibimport re

req = urllib.urlopen('http://www.imooc.com/course/list')

buf = req.read()
listurl = re.findall(r'http:.+\.jpg', buf)print listurl

i = 0for url in listurl:
    f = open(str(i) + '.jpg', 'w')
    req = urllib.urlopen(url)
    buf = req.read()
    f.write(buf)
    i += 1

以上就是Python正则表达式总结的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行