Python爬虫入门七之正则表达式

本文详细介绍Python中正则表达式的使用方法,包括基本概念、语法规则、贪婪与非贪婪模式、常用函数如match、search、findall等,并提供实例帮助理解。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.了解正则表达式

正则表达式是对字符串操作的一种逻辑公式,就是用事先定义好的一些特定字符、及这些特定字符的组合,组成一个“规则字符串”,这个“规则字符串”用来表达对字符串的一种过滤逻辑

正则表达式是用来匹配字符串非常强大的工具,在其他编程语言中同样有正则表达式的概念,Python同样不例外,利用了正则表达式,我们想要从返回的页面内容提取出我们想要的内容就易如反掌了

正则表达式的大致匹配过程是:
1.依次拿出表达式和文本中的字符比较
2.如果每一个字符都能匹配,则匹配成功;一旦有匹配不成功的字符则匹配失败
3.如果表达式中有量词或边界,这个过程会稍微有一些不同

2.正则表达式的语法规则

下面是Python中正则表达式的一些匹配规则

这里写图片描述

3.正则表达式相关注解

(1)数量词的贪婪模式与非贪婪模式

正则表达式通常用于在文本中查找匹配的字符串。Python里数量词默认是贪婪的(在少数语言里也可能是默认非贪婪),总是尝试匹配尽可能多的字符;非贪婪的则相反,总是尝试匹配尽可能少的字符。例如:正则表达式”ab*”如果用于查找”abbbc”,将找到”abbb”。而如果使用非贪婪的数量词”ab*?”,将找到”a”。

注:我们一般使用非贪婪模式来提取。

(2)反斜杠问题

与大多数编程语言相同,正则表达式里使用”\”作为转义字符,这就可能造成反斜杠困扰。假如你需要匹配文本中的字符”\”,那么使用编程语言表示的正则表达式里将需要4个反斜杠”\\”:前两个和后两个分别用于在编程语言里转义成反斜杠,转换成两个反斜杠后再在正则表达式里转义成一个反斜杠。

Python里的原生字符串很好地解决了这个问题,这个例子中的正则表达式可以使用r”\”表示。同样,匹配一个数字的”\d”可以写成r”\d”。有了原生字符串,妈妈也不用担心是不是漏写了反斜杠,写出来的表达式也更直观

4.Python Re模块

Python 自带了re模块,它提供了对正则表达式的支持。主要用到的方法列举如下

import re

#返回pattern对象
re.compile(string[,flag])  
#以下为匹配所用函数
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的概念,pattern可以理解为一个匹配模式,那么我们怎么获得这个匹配模式呢?很简单,我们需要利用re.compile方法就可以。例如

pattern = re.compile(r'hello')

在参数中我们传入了原生字符串对象,通过compile方法编译生成一个pattern对象,然后我们利用这个对象来进行进一步的匹配。

另外大家可能注意到了另一个参数 flags,在这里解释一下这个参数的含义:

参数flag是匹配模式,取值可以使用按位或运算符’|’表示同时生效,比如re.I | re.M。

可选值有:

  • re.I(全拼:IGNORECASE): 忽略大小写(括号内是完整写法,下同)
  • re.M(全拼:MULTILINE): 多行模式,改变’^’和’$’的行为(参见上图)
  • re.S(全拼:DOTALL): 点任意匹配模式,改变’.’的行为
  • re.L(全拼:LOCALE): 使预定字符类 \w \W \b \B \s \S 取决于当前区域设定
  • re.U(全拼:UNICODE): 使预定字符类 \w \W \b \B \s \S \d \D 取决于unicode定义的字符属性
  • re.X(全拼:VERBOSE): 详细模式。这个模式下正则表达式可以是多行,忽略空白字符,并可以加入注释。

在刚才所说的另外几个方法例如 re.match 里我们就需要用到这个pattern了,下面我们一一介绍

注:以下七个方法中的flags同样是代表匹配模式的意思,如果在pattern生成时已经指明了flags,那么在下面的方法中就不需要传入这个参数了。

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

这个方法将会从string(我们要匹配的字符串)的开头开始,尝试匹配pattern,一直向后匹配,如果遇到无法匹配的字符,立即返回None,如果匹配未结束已经到达string的末尾,也会返回None。两个结果均表示匹配失败,否则匹配pattern成功,同时匹配终止,不再对string向后匹配。下面我们通过一个例子理解一下

#!/usr/bin/env python3
# -*- coding:utf-8 -*-

import re

hello_pattern = re.compile(r'hello')
print(re.match(hello_pattern, 'hello'))
print(re.match(hello_pattern, 'helloo Sean!'))
print(re.match(hello_pattern, 'helo Sean!'))
print(re.match(hello_pattern, 'hello Sean'))

输出的结果

<_sre.SRE_Match object; span=(0, 5), match='hello'>
<_sre.SRE_Match object; span=(0, 5), match='hello'>
None
<_sre.SRE_Match object; span=(0, 5), match='hello'>

只有第三个匹配失败,其他的匹配成功,返回一个_sre.SRE_Match object

匹配分析

  1. 第一个匹配,pattern正则表达式为’hello’,我们匹配的目标字符串string也为hello,从头至尾完全匹配,匹配成功。
  2. 第二个匹配,string为helloo Sean,从string头开始匹配pattern完全可以匹配,pattern匹配结束,同时匹配终止,后面的o Sean不再匹配,返回匹配成功的信息。
  3. 第三个匹配,string为helo Sean,从string头开始匹配pattern,发现到 ‘o’ 时无法完成匹配,匹配终止,返回None
  4. 第四个匹配,同第二个匹配原理,即使遇到了空格符也不会受影响。

我们还看到最后打印出了result.group(),这个是什么意思呢?下面我们说一下关于match对象的的属性和方法
Match对象是一次匹配的结果,包含了很多关于此次匹配的信息,可以使用Match提供的可读属性或方法来获取这些信息。

属性:

  1. string: 匹配时使用的文本。
  2. re: 匹配时使用的Pattern对象。
  3. pos: 文本中正则表达式开始搜索的索引。值与Pattern. match()和Pattern. seach()方法的同名参数相同。
  4. endpos: 文本中正则表达式结束搜索的索引。值与Pattern. match()和Pattern. seach()方法的同名参数相同。
  5. lastindex: 最后一个被捕获的分组在文本中的索引。如果没有被捕获的分组,将为None。
  6. lastgroup: 最后一个被捕获的分组的别名。如果这个分组没有别名或者没有被捕获的分组,将为None。

方法:
1. group([group1, …]):
获得一个或多个分组截获的字符串;指定多个参数时将以元组形式返回。group1可以使用编号也可以使用别名;编号0代表整个匹配的子串;不填写参数时,返回group(0);没有截获字符串的组返回None;截获了多次的组返回最后一次截获的子串。
2. groups([default]):
以元组形式返回全部分组截获的字符串。相当于调用group(1,2,…last)。default表示没有截获字符串的组以这个值替代,默认为None。
3. groupdict([default]):
返回以有别名的组的别名为键、以该组截获的子串为值的字典,没有别名的组不包含在内。default含义同上。
4. start([group]):
返回指定的组截获的子串在string中的起始索引(子串第一个字符的索引)。group默认值为0。
5. end([group]):
返回指定的组截获的子串在string中的结束索引(子串最后一个字符的索引+1)。group默认值为0。
6. span([group]):
返回(start(group), end(group))。
7. expand(template):
将匹配到的分组代入template中然后返回。template中可以使用\id或\g、\g引用分组,但不能使用编号0。\id与\g是等价的;但\10将被认为是第10个分组,如果你想表达\1之后是字符’0’,只能使用\g0。

下面是个例子

#!/usr/bin/env python3
# -*- coding:utf-8 -*-

import re

hello_pattern = re.compile(r'hello')
print(re.match(hello_pattern, 'hello'))
print(re.match(hello_pattern, 'helloo Sean!'))
print(re.match(hello_pattern, 'helo Sean!'))
print(re.match(hello_pattern, 'hello Sean'))


hello_world_pattern = re.match(r'(\w+) (\w+)(?P<sign>.*)', 'hello world!')
print('string:', hello_world_pattern.string)
print('re:', hello_world_pattern.re)
print('pos:', hello_world_pattern.pos)
print('endpos:', hello_world_pattern.endpos)
print('lastindex:', hello_world_pattern.lastindex)
print('lastgroup:', hello_world_pattern.lastgroup)
print('group():', hello_world_pattern.group())
print('group(1, 2):', hello_world_pattern.group(1, 2))
print('groups:', hello_world_pattern.groups())
print('groupdict():', hello_world_pattern.groupdict())
print('start(2):', hello_world_pattern.start(2))
print('end(2):', hello_world_pattern.end(2))
print('span(2):', hello_world_pattern.span(2))
print(r"expand(r'\g \g\g')", hello_world_pattern.expand(r'\2 \1\3'))

输出

string: hello world!
re: re.compile('(\\w+) (\\w+)(?P<sign>.*)')
pos: 0
endpos: 12
lastindex: 3
lastgroup: sign
group(): hello world!
group(1, 2): ('hello', 'world')
groups: ('hello', 'world', '!')
groupdict(): {'sign': '!'}
start(2): 6
end(2): 11
span(2): (6, 11)
expand(r'\2 \1\3') world hello!

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

search方法与match方法极其类似,区别在于match()函数只检测re是不是在string的开始位置匹配,search()会扫描整个string查找匹配,match()只有在0位置匹配成功的话才有返回,如果不是开始位置匹配成功的话,match()就返回None。同样,search方法的返回对象同样match()返回对象的方法和属性。我们用一个例子感受一下

#!/usr/bin/env python3
# -*- coding:utf-8 -*-

import re

world_pattern = re.compile(r'world')
world_match = re.match(world_pattern, 'hello world!')
world_search = re.search(world_pattern, 'hello world!')

print(world_match)
print(world_search)

输出

world_match: None
world_search: <_sre.SRE_Match object; span=(6, 11), match='world'>

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

搜索string,以列表形式返回全部能匹配的子串。我们通过这个例子来感受一下

#!/usr/bin/env python3
# -*- coding:utf-8 -*-

import re

world_pattern = re.compile(r'world')
world_match = re.match(world_pattern, 'hello world!')
world_search = re.search(world_pattern, 'hello world!')
world_findall = re.findall(world_pattern, 'hello world!')

print(world_match)
print(world_search)
print('world_findall:', world_findall)

输出

world_match: None
world_search: <_sre.SRE_Match object; span=(6, 11), match='world'>
world_findall: ['world']

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

按照能够匹配的子串将string分割后返回列表。maxsplit用于指定最大分割次数,不指定将全部分割。我们通过下面的例子感受一下

#!/usr/bin/env python3
# -*- coding:utf-8 -*-

import re

numbers_pattern = re.compile(r'\d+')
print(re.split(numbers_pattern, 'one1two2three3four4ten10eleven11'))

输出

['one', 'two', 'three', 'four', 'ten', 'eleven', '']

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

搜索string,返回一个顺序访问每一个匹配结果(Match对象)的迭代器。我们通过下面的例子来感受一下

#!/usr/bin/env python3
# -*- coding:utf-8 -*-

import re

for m in re.finditer(numbers_pattern, 'one1two2three3four4ten10eleven11'):
    print(m.group())

输出

1
2
3
4
10
11

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

使用repl替换string中每一个匹配的子串后返回替换后的字符串。
当repl是一个字符串时,可以使用\id或\g、\g引用分组,但不能使用编号0。
当repl是一个方法时,这个方法应当只接受一个参数(Match对象),并返回一个字符串用于替换(返回的字符串中不能再引用分组)。
count用于指定最多替换次数,不指定时全部替换。

#!/usr/bin/env python3
# -*- coding:utf-8 -*-

import re

two_words_pattern = re.compile(r'(\w+) (\w+)')
print(re.sub(two_words_pattern, r'\2 \1', 'I say, hello world!'))
print(re.sub(two_words_pattern, lambda m: m.group(1).title() + ' ' + m.group(2).title(), 'I say, hello world!'))

输出

say I, world hello!
I Say, Hello World!

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

返回 (sub(repl, string[, count]), 替换次数)

#!/usr/bin/env python3
# -*- coding:utf-8 -*-

import re

two_words_pattern = re.compile(r'(\w+) (\w+)')
print(re.sub(two_words_pattern, r'\2 \1', 'I say, hello world!'))
print(re.sub(two_words_pattern, lambda m: m.group(1).title() + ' ' + m.group(2).title(), 'I say, hello world!'))
print(re.subn(two_words_pattern, r'\2 \1', 'I say, hello world!'))
print(re.subn(two_words_pattern, lambda m: m.group(1).title() + ' ' + m.group(2).title(), 'I say, hello world!'))

输出

say I, world hello!
I Say, Hello World!
('say I, world hello!', 2)
('I Say, Hello World!', 2)

5.Python Re模块的另一种使用方式

在上面我们介绍了7个工具方法,例如match,search等等,不过调用方式都是 re.match,re.search的方式,其实还有另外一种调用方式,可以通过pattern.match,pattern.search调用,这样调用便不用将pattern作为第一个参数传入了,大家想怎样调用皆可

  1. match(string[, pos[, endpos]]) | re.match(pattern, string[, flags])
  2. search(string[, pos[, endpos]]) | re.search(pattern, string[, flags])
  3. findall(string[, pos[, endpos]]) | re.findall(pattern, string[, flags])
  4. split(string[, maxsplit]) | re.split(pattern, string[, maxsplit])
  5. finditer(string[, pos[, endpos]]) | re.finditer(pattern, string[, flags])
  6. sub(repl, string[, count]) | re.sub(pattern, repl, string[, count])
  7. subn(repl, string[, count]) |re.sub(pattern, repl, string[, count])

具体的调用方法不必详说了,原理都类似,只是参数的变化不同。小伙伴们尝试一下吧~

小伙伴们加油,即使这一节看得云里雾里的也没关系,接下来我们会通过一些实战例子来帮助大家熟练掌握正则表达式的

转载于:静觅 » Python爬虫入门七之正则表达式

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值