PyCharm Edu 2019.1 Help

Find and replace a string using regular expressions

When you want to search and replace specific patterns of text, use regular expressions. They can help you in pattern matching, parsing, filtering of results, and so on. Once you learn the regex syntax, you can use it for almost any language.

  1. Press Ctrl+R to open the search and replace pane.

  2. Select the Regex checkbox to enable the regex syntax. If you need to check the regex syntax reference, click the question mark next to the Regex.

  3. Enter a search string in the top field and a replace string in the bottom field.

    Regex search and replace fields
  4. When you search for metacharacters such as .[{()\^$|?*+, you need to escape them with backslash (\) so they can be recognized.

    For example, if you need to find ., type \. in the search field.

  5. PyCharm Edu can also match a letter case when you enter a range of characters in your search field.

    For example, if you want to search for only uppercase characters, type the following in the search field:

    \b[A-Z]
  6. If the Match Case checkbox is cleared, PyCharm Edu searches for both lower and upper cases. Select the Match Case checkbox to match the case of the specified range.

    The result of the Match Case selection

  7. When you browse the occurrences, PyCharm Edu displays the replacement hints so you can view the potential results before clicking the Replace button.

    Replacement hints

Use regex capturing groups and backreferences

You can put the regular expressions inside brackets in order to group them. Each group has a number starting with 1 so you can refer to (backreference) them in your replace pattern. Note that the group 0 refers to the entire regular expression.

Let's consider the following code:

<form action="" class="form-inline" method="post"> <input type="text" class="form-control" name="username" value="Username"> <input type="password" class="form-control" name="password" value="Password"> <input class="btn btn-default" type="submit" value="Login"> </form>
  1. Open the search and replace pane (Ctrl+R).

  2. In the search field, enter parentheses () that would indicate a capturing group, for example: \svalue="(.*)?"\s*(>*)

  3. In the replace field, backreference such groups by numbers starting with 1, for example: placeholder="$1"

  4. PyCharm Edu highlights the found occurrences based on your search specifications and displays hints with the replace string.

    Replace with regex result

Switch the character case

You can use regular expressions to change the case of characters that matches some criteria.

  1. Open the search and replace pane (Ctrl+R). Make sure that the Regex checkbox is selected.

  2. In the search field enter the search pattern.

  3. In the replace field, depending on what you want to achieve, enter one of the following syntax:

    • \l changes a character to lowercase until the next character in the string.
      For example, Bar becomes bar.

    • \u changes a character to uppercase until the next character in the string.
      For example, bar becomes Bar.

    • \L changes characters to lowercase until the end of the literal string (\E).
      For example, BAR becomes bar.

    • \U changes characters to uppercase until the end of the literal string (\E).
      For example, bar becomes BAR.

    Switch to the uppercase character example

Refer to the RegEx syntax reference table for more details.

The following XML code fragment is used as an example for this tutorial.

<new product="ij" category="105" title="Multiline search and replace in the current file" /> <new product="ij" category="105" title="Improved search and replace in the current file" /> <new product="ij" category="105" title="Regexp shows replacement preview" /> ...

Find and replace a string

Suppose you want to replace an attribute within an element (title) with an expanded tag <title></title>, which contains some arbitrary string in double-quotes within.

This is how it's done.

  1. With the XML file opened in the editor, press Ctrl+R. The Replace pane appears on top of the editor.

  2. Since you want to replace all the title attributes, regardless of the actual strings contained therein, use regular expressions. Make sure that the checkbox Regex is selected. Thus, everything you type in the Search and Replace fields will be perceived as the regular expressions.

  3. In the Search field, start typing a regular expression that describes all title attributes.

    \stitle="(.*)?"\s*(/>*)
    Note that though the regular expression \stitle=".*?"\s*[/>]* matches contents of the title attribute, it is recommended to capture the groups for referencing them in the Replace field.
    regex sample code

  4. Then, in the Replace field, type the following regular expression:

    $2<title>$1</title>
    where $1 refers to the first capture group and $2 refers to the second capture group.

  5. Click Replace, or Replace All.

Last modified: 29 June 2019

See Also