I'm trying to get a regex that captures repeated letters except for the first letter that is matched.
I have a regex that gets the repeated letters: ([a-z])\1{2,}
However this would capture "ooo" in sooo. But i would only want to capture "oo"
(using this for the find and replace function in google sheets)