摘要: import re # 描述一个或多个空白符的regex是\s+ text = "foo bar\t baz \tqux" regex = re.compile('\s+') print(regex.split(text)) # 等于 re.split('\s+',text) # ['foo', ' 阅读全文
posted @ 2021-08-30 10:25 OTAKU_nicole 阅读(45) 评论(0) 推荐(0) 编辑