user663724
user663724

Reputation:

Eclipse : Search With the Exact Matching String

I am using Eclipse IDE , i need to search a String inside my Project .

So inside Eclipse , I clikced Search Item from Menu and Selected File and entered a String "exch" .

It is displaying all the results such as "exchange" , but i want to display only the Exact String matched "exch"

enter image description here

Upvotes: 10

Views: 7865

Answers (2)

Alex
Alex

Reputation: 11090

Check the "Regular expression" checkbox, and surround your word with \b at the beginning and end which matches beginning and end (boundaries) of a word, so your search term will be \bexch\b

Upvotes: 18

Shashank Kadne
Shashank Kadne

Reputation: 8101

Check Regular expression and search \sexch\s

Upvotes: 0

Related Questions