最佳答案
我想使用 IntelliJ 的查找和替换特性来执行以下转换:
// Replace this
model.put('foo', 'bar')
// With this
model['foo'] = bar
我试过以下方法:
要查找的文本: model.put\((.*),(.*)\)
替换为: model\[\\1\] = \\2
但 Intellij 似乎并不认可 \\1
和 \\2
作为背景参考。我也试过一条斜线,但也不管用。