With expression [\d]{9}
I can identify numeric characters if they are repeated nine times in sequence, however I only want identify if they are the same characters, for example:
111111111 // false
222222222 // false
333333333 // false
077546997 // true
123566566 // true
How should this grouping be handled?