标签: python regex search
我正面临一个正则表达式的小问题。我需要找到与正则表达式匹配的多个项目。但是现在我只找到一场比赛。例如:
match = "@oneTwittos + @twoTwittos and @ThreeTwittos" res = re.search('@(.*?)\s', match)
但是' res'仅包含' @ oneTwittos'而且我不知道为什么。
有人有想法吗?