python怎么使用正则表达式匹配1.1,1.2,1.3,1.4,1.5,1.6
时间: 2023-06-01 18:07:03 浏览: 219
《Python Cookbook》第三版中文v2.0.0
5星 · 资源好评率100%
您可以使用Python中的re模块来使用正则表达式匹配这些数字,例如:
```python
import re
text = "1.1, 1.2, 1.3, 1.4, 1.5, 1.6"
matches = re.findall(r'\d\.\d', text)
print(matches)
```
输出结果为:`['1.1', '1.2', '1.3', '1.4', '1.5', '1.6']`。
该正则表达式 `\d\.\d` 表示匹配一个数字,后面跟着一个小数点,再后面跟着一个数字。`\d` 表示匹配任何数字,`\.` 表示匹配一个小数点。使用 `re.findall` 函数可以返回所有匹配到的结果。
阅读全文