使用正则表达式匹配空格的方法是使用`\s`表示空白字符。下面是一个示例代码:
```python
import re
# 匹配所有空白字符
pattern = r'\s'
text = 'Hello World!'
result = re.findall(pattern, text)
print(result) # 输出 [' ']
# 匹配连续的空白字符
pattern = r'\s+'
text = 'Hello World!'
result = re.findall(pattern, text)
print(result) # 输出 [' ']
```
在上述示例中,`r'\s'`可以匹配单个空白字符,而`r'\s+'`可以匹配连续的空白字符。