我已经为此进行了谷歌搜索,并发现如何与其他正则表达式解析器一起使用:
http://vim.wikia.com/wiki/Changing_case_with_regular_expressions
http://www.regular-expressions.info/replacecase.html
我已经尝试了这些,但都没有用。例如,我想使用正则表达式来更改此设置:
private String Name;
private Integer Bar = 2;
对此:
private String name;
private Integer bar = 2;
我尝试过这样的事情:
replace: private (\S+) (\S+)
with: private $1 $L$2
with: private $1 \L$2
with: <etc.>
他们都不工作。是否可以在intellij中执行此操作,或者这是缺少的功能?这仅出于教育目的,该示例是人为设计的。我只想知道在intellij中是否可以这样做。