python用正则获取网页title内容
时间: 2023-10-13 10:04:45 浏览: 111
Python使用正则表达式获取网页中所需要的信息
可以使用Python中的re模块来使用正则表达式来获取网页的title内容。具体代码如下:
```python
import re
import requests
url = 'https://www.example.com'
response = requests.get(url)
# 使用正则表达式获取title内容
title_pattern = re.compile(r'<title>(.*?)</title>')
title_match = title_pattern.search(response.text)
if title_match:
title = title_match.group(1)
print(title)
else:
print('Title not found')
```
这段代码首先使用requests模块获取网页的HTML内容,然后使用正则表达式获取title标签中的内容。最后输出获取到的title内容。
阅读全文