用python代码实现:在a段落(2023年4月17日24时起国内成品油价格按机制上)中,写正则表达式,提取年月日
时间: 2023-06-06 15:08:51 浏览: 138
python年月日
答案:您好,以下是提取年月日的Python正则表达式代码:
```python
import re
text = '在a段落(2023年4月17日24时起国内成品油价格按机制上)中'
regex = r'\d+年\d+月\d+日'
matches = re.findall(regex, text)
print(matches)
# Output: ['2023年4月17日']
```
阅读全文