Searching a string in eclipse workspace

Eclipse

Eclipse Problem Overview


How to search for a string in the complete eclipse workspace? I was not able to locate a text in the eclipse workspace however I could not find the specified string in the workspace.

Eclipse Solutions


Solution 1 - Eclipse

At the top level menus, select 'Search' -> 'File Search' Then near the bottom (in the scope) there is a choice to select the entire workspace.

For your "File search has encountered a problem", you need to refresh the files in your workspace, in the Project/Package Explorer, right click and select "Refresh" at any level (project, folder, file). This will sync your workspace with the underlying file system and prevent the problem.

Solution 2 - Eclipse

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

Ctrl + Alt + G can be used to find selected text across a workspace in eclipse.

Solution 3 - Eclipse

Ctrl+ H, Select "File Search", indicate the "file name pattern", for example *.xml or *.java. And then select the scope "Workspace"

Solution 4 - Eclipse

A lot of answers only explain how to do the search.

To view the results look for a search tab (normally docked at the bottom of the screen):

Solution 5 - Eclipse

Eclipse does not search if the "File name patterns" field is empty.
So, if you want to search some text, write within "Containing text" field and leave
by default "File name patterns" with asterisk (*).

enter image description here

Solution 6 - Eclipse

eclipse instasearch plugin is a very useful plugin for search needs inside eclipse. It is based on lucene. This is also available in eclipse marketplace.

It has extensive feature set.

  • Instantly shows search results
  • Shows a preview using relevant lines
  • Periodically updates the index
  • Matches partial words (e.g. case in CamelCase)
  • Opens and highlights matches in files
  • Searches JAR source attachments
  • Supports filtering by extension/project/working set

Solution 7 - Eclipse

For Mac:

Quick Text Search: Shift + Cmd + L

enter image description here

All other search (like File Search, Git Search, Java Search etc): Ctrl + H

enter image description here

Solution 8 - Eclipse

Goto Search->File

You will get an window, you can give either simple search text or regx pattern. Once you enter your search keyword click Search and make sure that Scope is Workspace.

You may use this for Replace as well.

Solution 9 - Eclipse

Press Ctrl+shift+L and type your string

Solution 10 - Eclipse

In your Eclipse editor screen, try Control + Shift + R buttons.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMindBrainView Question on Stackoverflow
Solution 1 - EclipseFrancis Upton IVView Answer on Stackoverflow
Solution 2 - EclipseJainendraView Answer on Stackoverflow
Solution 3 - EclipseDiego DView Answer on Stackoverflow
Solution 4 - Eclipsevanguard69View Answer on Stackoverflow
Solution 5 - EclipsePhilip EncView Answer on Stackoverflow
Solution 6 - EclipseSairam KrishView Answer on Stackoverflow
Solution 7 - EclipseNeilView Answer on Stackoverflow
Solution 8 - EclipseSelvakumar PonnusamyView Answer on Stackoverflow
Solution 9 - EclipsemertaksuView Answer on Stackoverflow
Solution 10 - EclipseMadhuView Answer on Stackoverflow