I have this Regex that mathes values with all same characters:
^(.)\1+$ is true for aaaaaa or 33333333 but not ssssssssR or even ssssssS
I need opposite one, but nothing with !? helped me. 
Could someone hint what regex should be not to match values all-same character values?
Thanks in advance
