I'm facing a little issue with a regex. I need to find multiple items matching a regex. But for now I just find one match. For example :
match = "@oneTwittos + @twoTwittos and @ThreeTwittos"
res = re.search('@(.*?)\s', match)
But 'res' contain only '@oneTwittos' and I didn't know why.
Anyone have an idea?