I want to use IntelliJ's find-and-replace feature to perform the following transformation:
// Replace this
model.put('foo', 'bar')
// With this
model['foo'] = bar
I've tried the following:
Text to find: model.put\((.*),(.*)\)
Replace with: model\[\\1\] = \\2
But Intellij doesn't seem to recognise \\1
and \\2
as backreferences. I've also tried a single slash, but that doesn't work either.
The in-product contextual help for regex in Idea 9.0 (and perhaps other versions) appears to be incorrect. It states this:
But apparently, as mentioned in previous answers and is my experience, it's really \$n for back references, rather than \n
You get to this contextual help by clicking the '[Help]' link next to the "Regular expression" radio option on the the "Replace Text" dialog box
In short, you must use
$1
to$n
for replacement backreferences.\1
syntax is only for backreferences within the search.In IntelliJ 2016, the in-app documentation is misleading. Here is a better quote from the full docs:
Source: 2016.1 regular expression syntax, Tips & Tricks
IntelliJ IDEA / Reference / Regular Expression Syntax Reference
Matches subexpression and remembers the match. If you need to use the matched substring within the same regular expression, you can retrieve it using the backreference (\num, where num = 1..n). If you need to refer the matched substring somewhere outside the current regular expression (for example, in another regular expression in the Replacement field), you can retrieve it using the dollar sign ($num, where num = 1..n). If you need to include the parentheses characters into the subexpression, use "(" or ")".
IntelliJ uses
$1
for replacement backreferences.From IntelliJ's help: