在正则表达式中,可以使用`\s`来匹配空格字符,包括空格、制表符、换行符等。如果只想匹配空格,可以使用空格字符直接匹配。以下是两个示例:
1. 匹配任意空格字符:
```python
import re
text = "This is a test string."
matches = re.findall(r'\s', text)
print(matches)
```
输出:
```
[' ', ' ', ' ', ' ']
```
2. 匹配只有空格的字符串:
```python
import re
text = " "
matches = re.findall(r' ', text)
print(matches)
```
输出:
```
[' ', ' ', ' ']
```