Fork me on GitHub

使用re.split 按标点+空格的一种分割办法

import re

import string

t1 = re.split("["+string.punctuation+" ]","(555) 123-4567")

t2= re.split("["+string.punctuation+" ]","555.123.4567")

t1==t2

 

注意,"]" 前面有一个空格

posted @ 2018-05-30 15:06  烟波--钓徒  阅读(812)  评论(0编辑  收藏  举报