I need a RegEx that can match a string of 10 digits or more, but not if all the digits in the string are the same. So for this input, only the 2nd and 4th tokens would match:
Basically something along the lines of "\b\d{10,}\b" but somehow stripping out the strings of identical numbers.