Find and replace in file
You can quickly find and replace text strings in the current document. Using different options, you can narrow your search process, use regular expressions in your search, and manage your search results.
Open your file in the editor.
Press Ctrl+F or select
from the main menu.In the search field that opens, enter your search string. CLion highlights the results of your search in the file. Alternatively, in the editor, highlight the string you want to find and press Ctrl+F. CLion places the highlighted string into the search field.
Find in selection
You can search for a text string inside the multi-line selection.
Select a multi-line fragment and press Ctrl+F.
Click and type your search string. CLion will search for the target inside the selected fragment first.
If you release , CLion will switch the search process back to the whole file.
If you want to search for the multi-line fragment itself, select it and press Ctrl+F.
Manage your search
CLion lets you adjust your search process and perform various actions with the displayed search results.
To see the list of previous searches, click the magnifier glass icon or press ⌥↓ in the search field.
If you want to enter a multi-line string, click the icon in the search field for a new line.
With selected, CLion automatically escapes special regex symbols with backslash
\
when you search for a text string that contains them.For more details on regex, refer to the search with regex documentation.
Use the and arrows to navigate to the previous or the next occurrence.
Click the or icon to add a selection of the next occurrence or deselect the previous occurrence Alt+J or Alt+Shift+J.
If you want to quickly replace the target of your search in the whole file, press Ctrl+Alt+Shift+J and type a new string.
You can narrow your search when you click , in the search field, or click to select a scope for your search.
You can press ^⌥X (previously known as ⌥G) to quickly toggle the Regex option. You can use regular expressions to opt for more challenging searches.
Press Ctrl+F7 to see usages of any element in the opened file.
If you don't want CLion to highlight all found usages in the file, open the Settings dialog (Ctrl+Alt+S) and on the page clear the Highlight usages of element at caret option.
Press Alt+F7 to search for usages beyond the current file or Ctrl+Alt+F7 to open the search results in a separate popup. If you need to configure some options before the search, press Ctrl+Alt+Shift+F7 to open the Find Usages dialog.
Replace the search string in a file
Press Ctrl+R or select Replace in File window.
from the main menu to open theIn the top field, enter your search string. In the bottom field, enter your replacement string. If you need to preserve the case, click located in the replace field.
Click for a multi-line replace. For example, if you want to replace a comma with a comma and a new line, enter a comma in the search field and a comma and the new line in the replace field.
Click Replace to replace items one by one, Replace all to replace all items in your file, and Exclude to omit some items from replacing.
The options that appear in the Replace window, are similar to the Find window and you can refer to the manage the search results section.