Is there a way in SublimeText2 to find files that contain all of the words I specify. For example, I can search an entire folder for the word 'foo' but I am specifically looking for files that contain the words 'foo' and 'bar' (anywhere in the file, not necessarily together in the file).

I'm trying to use regex but that isn't working for me. I can use foo|bar but that will find either not both. I'm not sure how to express 'AND' in regex.

Any help? Many thanks in advance.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

((foo)+.*)bar|bar(.*(foo)+)

it's slow but works :) (not even really that slow! will come in handy in future for sure hehe thanks for inspiration to figure it out ;) )

link|improve this answer
Thanks for your reply. I'm going to take a look to see if a plugin is available that could enable this. :) – Tim Cutting Feb 15 at 11:05
gimme a sec - i might have found a way to do that :) will update – Tom Tu Feb 15 at 11:09
found a way :) each day we learn something new! ;) – Tom Tu Feb 15 at 11:17
Great work!! Really appreciate you taking the time out for this. Many thanks! – Tim Cutting Feb 15 at 11:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.