Simply search a string in entire netbeans solution

后端 未结 5 897
粉色の甜心
粉色の甜心 2021-02-05 01:34

Is there a way to find the entire solution for a string in netbeans. I believe that there is a find [ ] tab to find a word in the .java file but looking to find the word in

相关标签:
5条回答
  • 2021-02-05 01:41

    Press Ctrl + Shift + H.

    On the screen appear option scope. Click on this text-box and choose the project you want to find needed text snippets, or you can find all of the projects. I am using Netbeans 8.1 Best regard !

    0 讨论(0)
  • 2021-02-05 01:46

    If you click on the project in the projects pane.

    Then press and hold Ctrl+Shift+H

    A find and replace window will come up where you can specify what you would like to find and what to replace it with. You can use regular expressions and then after you search you can walk through all the results in the different files that are returned.

    0 讨论(0)
  • 2021-02-05 01:57

    On the mac it is cmd + shift + f (but you have to select the project on the projects pane, otherwise it doesn't work) or Toolbar --> Edit --> Find in Projects.

    0 讨论(0)
  • 2021-02-05 01:59

    ctrl + shift + F is the shortest way.

    You can define the wildcard there.

    0 讨论(0)
  • 2021-02-05 02:03

    Click - Edit - Find in Projects

    or ctrl + shift + F

    Can enter the containing text and the scope - Open Projects - Main Project - Selection

    0 讨论(0)
提交回复
热议问题