My experience with regular expressions is limited and I\'ve been reading various tutorials and posts on negation and negative lookahead, etc, but nothing seems to quite matc
I think, use this regex .*(.).*\1+.* to matches existd repeated characters. But for four, depend on you.
.*(.).*\1+.*
Good luck!