3
With the expression [\d]{9}
I can identify numeric characters if they are repeated nine times in sequence, but I only want to identify if they are the same characters, for example:
111111111 // false
222222222 // false
333333333 // false
077546997 // true
123566566 // true
How this grouping should be treated?
(0|1|2|3|4|5|6|7|8|9){9}
– BrunoRB
@Brunorb would be the negation of that, should give
false
when this regex givestrue
.– Sergio