Reputation: 11607
Is there any way to restrict the Find/Search to uncommented lines only ?
(Maybe using regex would be a good lead)
Upvotes: 9
Views: 2870
Reputation: 69
Lets say, if you need to search all occurrences of an uncommented text "VPEntity" then try using the following regular expression in Find in files after selecting the Use RegEx option
^((?!//|/\*).)*VPEntity
Hope it works for you
Upvotes: 6