写点什么

常用正则表达式最强汇总(含 Python 代码举例讲解 + 爬虫实战)

发布于: 2021 年 08 月 27 日

大家好,我是辰哥~


本文带大家学习正则表达式,并通过 python 代码举例讲解常用的正则表达式


最后实战爬取小说网页:重点在于爬取的网页通过正则表达式进行解析。

正则表达式语法

Python 的 re 模块(正则表达式)提供各种正则表达式的匹配操作。在绝大多数情况下能够有效地实现对复杂字符串的分析并取出相关信息。在讲解如何实际应用正则表达式之前,先教大家学习并掌握正则表达式的基本语法(匹配规则)。


正则表达式匹配过程如下:


(1)将定义好的正则表达式和字符串进行比较。


(2)如果每一个字符串都能匹配,则成功;一旦有匹配不成功的字符则匹配失败。

正则表达式规则

常见规则



数量词匹配规则



边界匹配规则


Re 模块

Python 中使用 Re 库去定义的正则表达式,常用的方法列举如下:


lpattern 对象


re.compile(string[,flag])


l 匹配所用函数


re.match(pattern, string[, flags])

re.search(pattern, string[, flags])

re.split(pattern, string[, maxsplit])

re.findall(pattern, string[, flags])

re.finditer(pattern, string[, flags])

re.sub(pattern, repl, string[, count])

re.subn(pattern, repl, string[, count])


其中 pattern 对象是由我们传入字符串对象,通过 compile 方法生成。利用这个对象来进行下一步的匹配。针对上述列举的各种正则表达式匹配规则和函数,下面通过 Python 代码进行举例讲解。


(1) re.match(pattern, string[, flags])


match 函数将会从 String(待匹配的字符串)的开头开始,尝试匹配 pattern,一直向后匹配。如果中途匹配 pattern 成功,则终止匹配,返回匹配结果。如果无法匹配或者到字符串末尾还未匹配到,则返回 None。


举例


#导入re模块import repattern = re.compile(r'python')# 使用re.match匹配文本,获得匹配结果,无法匹配时将返回Noneresult1 = re.match(pattern,'python')result2 = re.match(pattern,'pythonn CQC!')result3 = re.match(pattern,'pthon CQC!')print(result1)print(result2)print(result3) """结果:<_sre.SRE_Match object; span=(0, 6), match='python'><_sre.SRE_Match object; span=(0, 6), match='python'>None""" 
复制代码


(2) re.search(pattern, string[, flags])


Search 函数会扫描整个 string 字符串查找匹配,存在的话返回匹配结果,不存在则返回 None。


举例:


import repattern = re.compile(r'python')#从“hello pythonnnnn!”中匹配“python”result1 = re.search(pattern,'hello pythonnnnn!')#从“hello pyhon!”中匹配“python”result2 = re.search(pattern,'hello pyhon!')print(result1)print(result2) """结果:<_sre.SRE_Match object; span=(6, 12), match='python'>None"""
复制代码


(3) re.split(pattern, string[, maxsplit])


split 函数可以按照 pattern 匹配模式将 string 字符串分割后返回列表,其中 maxsplit 参数可以指定最大分割次数,不指定则将字符串全部分割。


举例:


import re#以一位或者多位数字作为分割间隔pattern = re.compile(r'\d+')print(re.split(pattern,'python1java2php3js'))#只分割两次print(re.split(pattern,'python1java2php3js',maxsplit=2)) """结果:['python', 'java', 'php', 'js']['python', 'java', 'php3js']"""
复制代码


(4) re.findall(pattern, string[, flags])


findall 函数作用是搜索整个字符串,以列表形式返回全部能匹配的子串。


举例:


import repattern = re.compile(r'\d+')print(re.findall(pattern,'python1java2php3js2245')) """结果:['1', '2', '3', '2245']"""
复制代码


(5) re.finditer(pattern, string[, flags])


finditer 函数作用是搜索整个字符串,返回一个符合匹配结果(Match 对象)的迭代器。


举例:



import re#以一位或者多位数字作为搜索条件pattern = re.compile(r'\d+')#搜索结果得到一个集合,通过循环对集合遍历输出for item in re.finditer(pattern,'python1java2php3js2245'): print(item.group()) """结果:1232245"""
复制代码


(6) re.sub(pattern, repl, string[, count])


先看两个例子,然后再解释这个 sub 函数的作用。


举例:



import repattern1 = re.compile(r'music')#例1中“i love the music”里的music替换成pythonprint(re.sub(pattern1, 'python', 'i love the music'))pattern2 = re.compile(r'(\d+)')#例2中“数字123 和9”被python替换。print(re.sub(pattern2, 'python', 'My number is 123 and my favorite number is 9')) """结果:i love the pythonMy number is python and my favorite number is python"""
复制代码


(7) re.subn(pattern, repl, string[, count])


subn 可以指定替换次数,不指定则默认替换全部。


举例:



import re#以一位或者多位数字作为替换条件pattern1 = re.compile(r'(\d+)')#用“python”替换数字(一位或者多位),最后返回替换结果和替换次数print(re.subn(pattern1, 'python', 'My number is 123 and my favorite number is 9'))pattern2 = re.compile(r'(\d+)')print(re.subn(pattern2, 'python', 'My number is 123 and my favorite number is 9',1)) """结果:('My number is python and my favorite number is python', 2)('My number is python and my favorite number is 9', 1)"""
复制代码

实战

需求:提取小说章节正文和标题


本节通过实战案例来讲解正则表达式的应用。案例目的是:提取小说章节内容。步骤是先采集到每一章小说正文内容网页源码,然后通过正则表达式将里面的正文提取出来。


这里爬取小说  第一章 北灵院,用正则表达式提取小说章节正文标题


目标链接:http://book.chenlove.cn/book/12242/39a44ff6dd27f.html


页面如下:



分析网页源码:



可以看到章节标题在 h3 标签中,其 class 为 j_chapterName;正文内容在 p 标签中,清楚这些之后,下面开始编写代码请求网页源码,并编写正则表达式去提取标题和正文。


完整代码如下:



import requestsimport reimport json# 设置代理服务器headers = { 'User_Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'}#请求连接url = "http://book.chenlove.cn/book/12242/39a44ff6dd27f.html"response = requests.get(url, headers=headers)if response.status_code == 200: # 转化为utf-8格式,不加这条语句,输出爬取的信息为乱码 response.encoding = 'utf8' #获取到源码 html = response.text # 正则表达式解析小说章节标题 pattern1 = re.compile('<h3>(.+)</h3>') title = re.findall(pattern1, html)[0] #正则表达式解析小说章节正文内容 text = re.findall(r"<p>(.*?)</p>", html,re.S)[2:-1][0].split("</div>")[0] # 打印输出 print(title) print(text) """结果:第一章 北灵院 烈日如炎,灼热的阳光从天空上倾洒下来,令得整片大地都是处于一片蒸腾之中,杨柳微垂,......"""
复制代码


可以看到第一章的标题和正文已经成功提取出来了,因为正文内容很长,这里仅展示部分。


最后


本文汇总正则表达式常用的基本语法,并结合 Python 进行举例演示


最后实战讲解正则表达式在爬虫中的应用。

发布于: 2021 年 08 月 27 日阅读数: 11
用户头像

个人公众号:Python研究者 2021.04.26 加入

教你如何学Python,专注于Python入门与进阶、爬虫、数据分析挖掘、数据可视化。分享Python相关的技术文章、工具资源、视频教程、学习资料。

评论 (1 条评论)

发布
用户头像
感谢分享,推荐一个好用的接口管理工具apipost,支持mac,windows,linux,多个平台。特别方便
2021 年 08 月 27 日 16:27
回复
没有更多了
常用正则表达式最强汇总(含Python代码举例讲解+爬虫实战)