I'm trying to use a regex to capture tweets containing the substring at least twice, so I'm using an unsophisticated
^.+ .+ .+$
. However this doesn't match strings which instead contain, for example, .
Is there a smart way I can capture an emoji with any or none skin-tone variation, without just putting each one in a row (like []
)?