I want to find words which contain two z’s and also two a’s through a word list? Thank You
z.*z.*a.*a|z.*a.*z.*a|a.*z.*z.*a|z.*a.*a.*z|a.*a.*z.*z
or as Benjamin wrote in comments below, if you use piping you can simplify it to
grep 'z.*z' | grep 'a.*a'
1.4m articles
1.4m replys
5 comments
57.0k users