Structural search and replace examples
As you know the main difference between regular search and the structural search is that in the structural search we are looking for a structural template in a programming language.
The beauty of a structural search is that you can create a pattern based on the existing template and save yourself time when searching and replacing code.
The extensive list of existing templates covers a lot of use-cases from simple patterns to more complex ones.
Each item in a pattern consists of variables that are limited by $ sign on both sides.
Example pattern
Let's start with a simple task and search for an open lock objects using the synchronized
keyword. The synchronized
keyword can have two cases:
as a block statement
class ClassA { public void someMethod() { synchronized(this) { // ... } } }as a method modifier
class ClassA { public synchronized void someMethod() { // ... } }
Let's look for something like that
We can add the Count filter for the $parameter$ variable form 0 to infinity. So, the pattern can search for all the synchronizable methods with an arbitrary number of parameters, but with only one line of code in the body. We also set the same zero-to-infinity limitation for the $statement$ variable in order to correct this.
One statement
Increasing the number of occurrences count to a certain number, you can find sequences of statements that contain up to the specified number of elements.
Method call
This template matches method call expressions. If the number of occurrences is zero, it means that a method call can be omitted.
You can use this template to find deprecated methods and use it as prototype for creating other annotated method templates. Specifically for searching method calls to deprecated methods you can select the already existing template method calls to deprecated methods.
Refer to Structural search and replace on how to create a search template.
If statement
Search in comments and/or string literals
Consider one wants to find comments or literal containing 'foo'. Search template would be like $SomethingWeWantToFind$
or "$SomethingWeWantToFind$"
. In case one wants to find comments/string containing some particular words (say, foo as a word), this should be specified as a text constraint.
Add try/catch/finally code
If one wants to replace a statement with a try/catch/finally
construct, the following pair of search and replace templates can be suggested. The search template is:
with a certain maximum number of occurrences specified as a constraint.
The replacement template is:
Finding all descendants of a class or all classes that implement a certain interface
Consider the following search templates:
or
As the text constraint for the variables $AnotherClass$ or $SomeInterface$, specify the name of the base class or implemented interface.
Finding all such methods
To look for the different implementations of the same interface method, use the following search template:
Specify text constraint for the $show$
variable, and enable the option This variable is the target of the search.
Using @Modifier for finding package local and instance methods
IntelliJ IDEA suggests pre-defined templates for the package local and instance fields of a class. These templates make use of the @Modifier annotation, which helps describe search target, when there is no way to express it using the natural language means.
However, if you need to search for package local or instance methods, you will have to create the corresponding search templates yourself, applying the @Modifier annotation.
To specify criteria for finding all methods with the visibility modifiers package local and instance, use the following search template:
Using 'Contained in Constraints' field in a search
The existing example uses the following template:
Placing if('_a) { '_st*; }
where _a
and _st
are variables and *
denotes zero or more occurrences in Contained in Constraints field and selecting Invert condition checkbox of Complete Match variable will result a search of logging statements that are not contained in the if
statement.
Examples for HTML and XML
The following examples show how you can use structural search in HTML and XML code.
Searching for XML and HTML tags, attributes, and their values
The simplest template to search for a tag is <$tag$/>
.
By placing constraints on the variable
$tag$
, you can specify tags that you want to find. For example, if you specifyli
, you will get allli
tags.Consider the following template for searching in XML and HTML:
<$tag$ $attribute$=$value$ />
. For example, if you specify the text filterid
for the$attribute$
variable and the\d+
regular expression as the text filter for the$value$
variable, you can find all tags that have numeric values in theid
attribute.
Delete all lines that have the id attribute greater than 2
Create an HTML file and paste the following code:
<!doctype html> <html> <head> <title>Structural Search Example</title> <body> <ul> <li id="1">Example line 1</li> <li id="2">Example line 2</li> <li id="3">Example line 3</li> <li id="a">Example line a</li> <li id="5">Example line 5</li> </ul> </body> </html>From the main menu, select
.From the Language list, select HTML.
Paste the following string to the Search template field:
<$tag$ $attribute$="$value$">Click the
$tag$
variable.In the filter panel, click Add modifier, select Text and type
li
in the value field.If the filter panel is not visible, click the Toggle Modifier Panel icon.
Click the
$attribute$
variable.In the filter panel, click Add modifier, select Text and type
id
in the value field.Click the
$value$
variable.In the filter panel, click Add modifier, select Text and type
\d+
in the value field.The
\d+
regular expression limits search results to numeric values. So, the line with theid="a"
will be filtered out.Without switching the focus from the filter panel, click the Add button, select Script and paste the following code:
value.getText().replaceAll (/"/, '').toInteger() > 2The script reads the content of the
$value$
variable and returns it as a string (for example,"1"
). Then the script replaces all the quotes and converts the string value to integer and compares it with2
.
Convert uppercase values of the class attribute in li tags to lowercase
Create an HTML file and paste the following code:
<!doctype html> <html> <head> <title class="EXAMPLE">Structural Replace Example</title> <body> <ul> <li class="EXAMPLE">Example line 1</li> <li class="example">Example line 2</li> <li class="EXAMPLE">Example line 3</li> <li class="example">Example line a</li> <li id="EXAMPLE">Example line 5</li> </ul> </body> </html>From the main menu, select
.From the Language list, select HTML.
Paste the following string to the Search template field:
<$tag$ $attribute$="$value$">Select the Match case checkbox.
Click the
$tag$
variable.In the filter panel, click Add modifier, select Text and type
li
in the value field.Click the
$attribute$
variable.In the filter panel, click Add modifier, select Text and type
class
in the value field.Click the
$value$
variable.In the filter panel, click Add modifier, select Text and type
[A-Z].*
in the value field.The
[A-Z].*
regular expression limits search results to uppercase values.From the Target list, select value. This procedure highlights all the uppercase values of the
class
attribute.In the Replace template field, paste the
$to_lower_case$
variable.Click the
$to_lower_case$
variable.In the filter panel, click Add modifier, select Script and paste the following code:
value.getText().toLowerCase()Click Find.
In the Find tool window, preview the found results and click Replace All.