在正則表達式中,可以使用\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)
輸出:
[' ', ' ', ' ']