python 正则匹配YYYY/MM
时间: 2023-09-11 07:04:23 浏览: 152
python 实现正则表达式匹配
可以使用正则表达式来匹配 YYYY/MM 格式的日期,以下是一个示例代码:
```python
import re
# 定义匹配模式
pattern = r"\d{4}/\d{2}"
# 待匹配的字符串
text = "今天是2022/01/01,明天是2022/01/02"
# 使用 findall 方法查找所有匹配项
matches = re.findall(pattern, text)
# 输出匹配结果
print(matches)
```
输出结果为:
```
['2022/01', '2022/01']
```
其中,`\d{4}` 匹配四个数字,`/` 匹配斜杠,`\d{2}` 匹配两个数字。匹配结果为一个列表,包含所有匹配的字符串。
阅读全文