Looking for the regexp for finding all longest digit sequences (starting with length = 5) of the same numbers. E.g.:
Input: \'hgfd 0022222233333 4444 5556555 000
(\d)\1{5,} return ['222222', '0000000']
(\d)\1{5,}
['222222', '0000000']
(\d)\1{4,} return ['222222', '33333', '0000000']
(\d)\1{4,}
['222222', '33333', '0000000']