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