This regex matches the second letter by the first letter, but the second letter is not an uppercase
([a-z])\1
Now regex matches letters like aa or bb,... but I need that my regex can match all aA,bB,... from this string "abcaAcvbBklmM"
So how to make that regex can match the second value by the first value, but the second must be an uppercase