标签:style blog color 使用 sp div on 问题 log
使用正则表达式可以很好解决
import re
s = ‘Hello!This?Is!What?I!Want‘
ss = re.split(‘[!?]‘, s)
ss = [‘Hello‘, ‘This‘, ‘Is‘, ‘What‘, ‘I‘, ‘Want‘]
标签:style blog color 使用 sp div on 问题 log
原文地址:http://www.cnblogs.com/arhatlohan/p/4036729.html