I want to find in a list of words, every words with a least 3 times the same letter in it. To achieve that I did .*(\w).*\1.*\1.*\1.*
and you can test it here http://www.regexplanet.com/advanced/java/index.html but I don't know how to put it in my zgrep
command.
How can I insert this regex in a zgrep
command ?