Does Eclipse have a way to search a whole project for some text? Like Xcode's "find in project" feature.

Thanks!

link|improve this question

72% accept rate
And for multi-line regex-based search, see stackoverflow.com/questions/3164453/… – VonC Jul 4 '10 at 15:00
feedback

4 Answers

up vote 82 down vote accepted
  1. Ctrl + H
  2. Choose File Search for plain text search in workspace/selected projects
  3. For specific expression searches, choose the relevant tab (such as Java Search which allows to search for specific identifiers)
link|improve this answer
feedback

Press Ctrl + h, should bring up the search that will include options to search via project, directory, etc.

link|improve this answer
feedback

yes, but you need to open the global search panel. to do so, press the binoculars icon on the top right corner of the IDE.

you can even filter searches by function identifiers, method scopes an etc...

  • Choose File Search for plain text search in workspace/selected projects
  • For specific expression searches, choose the relevant tab (such as Java Search which allows to search for specific identifiers)
link|improve this answer
1  
My version of Eclipse doesn't have binoculars in the upper right (or anywhere that I can find). – Brian Knoblauch Jun 17 '11 at 15:09
feedback

yes, but you need to open the global search panel. to do so, press the binoculars icon on the top right corner of the IDE.

you can even filter searches by function identifiers, method scopes an etc...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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