tags:

views:

26

answers:

4

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

Thanks!

A: 

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

Jason McCreary
+2  A: 

yes it has, you see on provided screenshoot how to search

alt text

vertazzar
A: 

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...

Shuky Kappon
+1  A: 
  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)
Yuval A