PHP
·
发表于 5年以前
·
阅读量:8286
import re
with open("file.txt") as f
text = f.read()
# 分割为所有单词组成的list, \W匹配非字母数字及下划线
result = re.split('\W+', text)