python正则表达式读取IPv4
时间: 2024-01-04 08:20:33 浏览: 176
Python正则表达式匹配和提取IP地址
以下是使用Python正则表达式读取IPv4地址的示例代码:
```python
import re
# 定义一个包含IPv4地址的字符串
text = "192.168.0.1, 10.0.0.1, 172.16.0.1"
# 使用正则表达式匹配IPv4地址
ipv4_pattern = r"\b(?:[0-9]{1,3}\.){3}[0-9]{1,3}\b"
ipv4_addresses = re.findall(ipv4_pattern, text)
# 打印匹配到的IPv4地址
for address in ipv4_addresses:
print(address)
```
输出结果为:
```
192.168.0.1
10.0.0.1
172.16.0.1
```
阅读全文