How to replace string in Netbeans?

Possible duplicate:
Finding and replacing an entire project (Netbeans)

In another IDE, there is a function for finding and replacing code. I want this feature in Netbeans. I know there is a refactoring function, but this is only for variables. How can I find and replace text that is not a variable name?

+6
source share
2 answers

CTRL + SHIFT + H will open a replacement dialog where you can find + replace in any or all of your open projects.

+25
source

Ctrl + Shift + H gives you the Find and Replace dialog, as shown:

enter image description here

If you have trouble finding a specific feature in Netbeans, one of the first places you can check out is the keyboard shortcut list.

+3
source

Source: https://habr.com/ru/post/921232/


All Articles