如何使用正则表达式在python中匹配空格?
以下代码匹配给定字符串中的空格。
示例
import reresult = re.search(r'[\s]', 'The Indian Express')
print result
输出
<_sre.SRE_Match object at 0x0000000005106648>
示例
以下代码查找给定字符串中的所有空格并将其打印出来
import reresult = re.findall(r'[\s]', 'The Indian Express')
print result
输出
[' ', ' ']
以上是 如何使用正则表达式在python中匹配空格? 的全部内容, 来源链接: utcz.com/z/348826.html