生成一个python正则表达式
时间: 2023-07-04 12:14:20 浏览: 74
python 正则表达式
好的,这是一个简单的Python正则表达式示例,它匹配所有的整数:
```
import re
regex = r"\d+"
input_string = "The price of the book is 20 dollars"
matches = re.findall(regex, input_string)
print(matches)
```
输出:
```
['20']
```
这个正则表达式使用 `\d` 匹配任何数字字符,`+` 匹配一个或多个数字字符。`re.findall()` 函数返回所有匹配的字符串。
阅读全文