正则表达式 – Vim匹配除一行开头的字符以外的所有内容

前端之家收集整理的这篇文章主要介绍了正则表达式 – Vim匹配除一行开头的字符以外的所有内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经广泛寻找答案,我无法在任何地方找到它.我想用一行(使用搜索和替换)或其他命令替换功能块中的所有代码.我还希望能够在整个文件中为多个功能执行此操作.

我有一块像这样的代码……

{
some code
more code…
many lines of random code
}

我想用一行代码替换花括号内的所有内容,例如:

{
return STATUS_OK;
}

我尝试过类似的东西,

%s/^{_[^}]+/\treturn STATUS_OK;/g

但是这会停在第一行}而不是第一行}的一行开头.

我试过这个

%s/^{_[^^}]+/\treturn STATUS_OK;/g

为了在第一行停在第一行}但是由于某种原因这不起作用.有任何想法吗?谢谢.

解决方法

此正则表达式匹配最外层的curlies而不考虑函数名称

%s/^{\(\(\s\+}\)\|[^}]\|\_s\)*/{\treturn STATUS_OK;/g

分解:

^{  # match a curly at the beginning of a line
\(  # group these alternations.... either match
     \(\s\+}\) \|  # whilespace followed by a closing curly 
                   # (to get rid of internal blocks) or ..
     [^}]      \|  # match a non curly,or ..
     \_s           # match newlines and whitespaces
 \)*               # match the alternation as long as you can

猜你在找的正则表达式相关文章