您当前的位置: 首页 > 

IT之一小佬

暂无认证

  • 2浏览

    0关注

    1192博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

re.findall()用法详解

IT之一小佬 发布时间:2021-12-21 20:40:25 ,浏览量:2

re.findall():函数返回包含所有匹配项的列表。返回string中所有与pattern相匹配的全部字串,返回形式为数组。

示例代码1:【打印所有的匹配项】

import re

s = "Long live the people's Republic of China"
ret = re.findall('h', s)

print(ret)

运行结果:

 示例代码2:【如果未找到匹配项,返回空列表】

import re

s = "Long live the people's Republic of China"
ret = re.findall('USA', s)

print(ret)

运行结果:

示例代码:

import re

s = "https://blog.csdn.net/weixin_44799217"
ret = re.findall(r"^http", s)
print(ret)

ret2 = re.findall(r"[t,b,s]", s)  # 匹配括号中的其中一个字符
print(ret2)

ret3 = re.findall(r"\d\d\d", s)
print(ret3)

ret4 = re.findall(r"\d", s)
print(ret4)

ret5 = re.findall(r"[^\d]", s)  # 取非
print(ret5)

ret6 = re.findall(r"[^https://]", s)  # 取非
print(ret6)

运行结果:

 获取网站中的title:

import requests
import re

url = 'https://pz.wendu.com/'

response = requests.get(url)
data = response.text
# print(data)
res = re.findall(r'(.*?)', data)[0]
print(res)

运行效果: 

​​​​​​​

关注
打赏
1665675218
查看更多评论
立即登录/注册

微信扫码登录

0.1611s