我有一种提取所有"字的方法"来自javascript中的字符串:
mystring.toLowerCase().match(/[a-z]+/g);
我希望转换相同的逻辑(从我的字符串创建一个"单词"的数组),但是在python中。我怎样才能做到这一点?
答案 0 :(得分:3)
使用findall()
,类似于String.prototype.match()
。
import re
regex = r"[a-z]+"
matches = re.findall(regex, strToScan)