python爬虫正则表达式匹配空白符
时间: 2023-09-10 10:11:11 浏览: 93
python 实现正则表达式匹配
空白符包括空格、制表符、换行符等。在Python中,可以使用正则表达式中的特殊字符“\s”来匹配空白符。例如:
```python
import re
text = "hello\tworld\n"
pattern = re.compile(r"\s+")
result = pattern.sub("", text)
print(result) # output: helloworld
```
在上面的例子中,使用正则表达式的“\s+”匹配了字符串中的空白符,并使用sub()方法将其替换为空字符串,最终得到了去除空白符的结果。
阅读全文