Home > Software design >  Android Studio Search (Ctrl Shift F) doesn't search all occurrences of a string
Android Studio Search (Ctrl Shift F) doesn't search all occurrences of a string

Time:04-20

Android Studio Search (Ctrl Shift F) doesn't search all occurrences of a string.

Why is this happening? I tried setting scope to "In Project", "Module", "Directory" and even custom scope.

I already have gone through this post and other such posts. Search all the occurrences of a string in the entire project in Android Studio

CodePudding user response:

Could you try these steps below?

  • Is the file containing "searched" text is in a directory Marked as Excluded?
  • Is File Mask activated?
  • Is Regex filter activated?
  • Is Search Filter Popup searchs Anywhere?
  • Is the project indexed. Try to invalidate caches.

Hope, it helps.

  • Related