在Python中等效的Javascript“匹配”

时间:2014-12-10 00:47:59

标签: javascript python match

我有一种提取所有"字的方法"来自javascript中的字符串:

mystring.toLowerCase().match(/[a-z]+/g);

我希望转换相同的逻辑(从我的字符串创建一个"单词"的数组),但是在python中。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:3)

使用findall(),类似于String.prototype.match()

import re
regex = r"[a-z]+"
matches = re.findall(regex, strToScan)