我正在尝试编写一个vimscript来重构一些遗留代码。
大致上我有很多这种格式的文件
$this['foo'] = array();
{
$this['foo']['id'] = 123;
$this['foo']['name'] = 'name here';
$this['foo']['name2'] = 'name here2';
$this['foo']['name3'] = 'name here3';
}
我想将其重新格式化为
$this['foo'] = array(
'id' => 123;
'name' 'name here';
'name2' 'name here';
'name3' 'name here';
);
其中foo是可变的。
我正在尝试匹配
$this['foo'] = array()
{
使用此正则表达式
/\zs\$this\[.*\]\ze = array()\_s{;
所以我可以执行这段代码
# move cursor down two lines, visual select the contents of the block { }
jjvi{
# use variable, parent_array to replace
s/\= parent_array . '\[\([^=]\+\)] = \(.*\);'/'\1' => \2,
但当然我需要让parent_array = /\zs$this [(。*)] \ _ z = array();这显然不是正确的语法...
TL; DR
function Refactor()
# what is the proper syntax to do this assignment ?
let parent_array = /\zs\$this\[.*\]\ze = array()\_s{;
if (parent_array)
jjvi{
'<,'>s/\= parent_array . '\[\([^=]\+\)] = \(.*\);'/'\1' => \2,
endif
endfunction
EDIT *根据评论者FDinoff固定转义
答案 0 :(得分:4)
假设一行中只有一个这样的匹配,并且你想要第一个这样的行:
let pattern = '\$this\[.*\]\ze = array()\_s{;'
if search(pattern, 'cW') > 0
let parent_array = matchstr(getline('.'), pattern)
endif
首先找到下一个匹配的行,然后提取匹配的文本。请注意,这会移动光标,但'n'
标志为search()
,这可以避免。