Home > Blockchain >  How to search for text in entire IntelliJ project?
How to search for text in entire IntelliJ project?

Time:02-26

I'm looking to replace every instance of a variable in my IntelliJ project. I know that it is present in quite a few files within the project, but I can't find a way to find them all. Is the some way to search for a variable in all of the files I have at once? I am on Windows.

CodePudding user response:

ctrl shift f to open a modal to search all file contents. Then press ctrl shift R to open up the replace dialog.

  • Related