Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
782 views
in Technique[技术] by (71.8m points)

regex - How do i grep to find words which contain two z’s and also two a’s

I want to find words which contain two z’s and also two a’s through a word list? Thank You

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
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'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...