English 中文(简体)
能否在Vim中通过regex替代有条件地插入文本?
原标题:Is it possible to conditionally insert text via regex substitution in Vim?
  • 时间:2012-05-22 14:39:13
  •  标签:
  • regex
  • vim

我从一张表格里有几行,我正在将Excel转换为Wiki格式,如果该字段中有文本,我还要为每行的文本添加部分链接标记。我已开始转换工作,并谈到这一点:

|10.20.30.9||x|-||
|10.20.30.10||x|s04|Server 4|
|10.20.30.11||x|s05|Server 5|
|10.20.30.12|||||
|10.20.30.13|||||

我要的是将第四列从 s04 改为 [[server:s04]] 。如果该行是空的,或者如果该行包含 - 。如果该 - 是一个大问题,我可以删除。

我所有尝试regex 从线端得到任何东西 整个线被替换。

最佳回答

请允许我建议以下替代命令。

:%s/^|\%([^|]*|){3}zs[^|-]+ze|/[[server:&]]/
问题回答

考虑使用 awk 来做到这一点:

#!/bin/bash

awk -F |   
{ 
  OFS = "|";
  if ($5 != "" && $5 != "-")
    $5 = "server:" $5;
  print $0
} 

NOTE: 自从第一个版本以来, 我编辑过这个脚本。 目前这个版本, 国际海事组织更好 。

然后您可以使用 :

cat $FILENAME | sh $AWK_SCRIPTNAME

-F 开关告诉 awk 使用 作为字段分隔符。 if/ele printf 的语句很能自我解释。 它打印字段, 服务器: 仅当它不是 - " " " 时, 才会预设到第5栏。

为什么是第5栏,而不是第4栏? : 因为您在每个记录开头使用 < code_ / code> 。 因此, < code> awk 将第一个字段 ( < code> 1 < / code > ) 变成一个空字符串, 它 < em > 相信 本来应该发生在 < em > 之前, < em > 之前。 < code_ / code> 首个 < code_ / code > 。

这似乎完成了你放弃的样本的工作(与Vim一起):

%s/^|\%([^|]*|){3}zs[^|]*/=(empty(submatch(0)) || submatch(0) ==  - ) ? submatch(0) :  [[server: .submatch(0). ]] /

最好用ArjunShankar 的写法, 但如果你删除“-”字,

:%s/^([^|]*|)([^|]*|)([^|]*|)([^|]*|)([^|]+|)/1234[[server:5]]/

它只是愚蠢而已。 前四个是完全相同的( 最多为 {{{ 4} 4 次) 。 没有与 { 4} 合作。 第五个符合 s04/ s05 字符串( 只需要它不是空的, 因为必须删除“ - ” ) 。

给其他人的想法添加更多可读性:

:%s/v^%(|.{-}){3}|zs(w+)/[[server:1]]/

任务完成

注意 { 3} 表示要跳过的列数 。 注意 < code> v < / code > 用于 < em> verymagic < / em > regex 模式。 这将降低 Regex 的复杂程度, 特别是当它使用比文字更特殊的字符时 。

试试

 :1,$s/|(s[0-9]+)|/|[[server:1]]|/

假设你的S04,S05 总是S和数字

更简单的替代方法如下:

%s/^|.{-}|.{-}|.{-}|zs(w{1,})ze|/[[server:1]]/

   ^^^^^^^^^^^^^^^^^^^^                   -> Match the first 3 groups (empty or not);
                       ^^^                -> Marks the "start of match";
                          ^^^^^^^^^^^     -> Match only if the 4th line contains letters numbers and `_` ([0-9A-Za-z_]);
                                     ^^^  -> Marks the "end of match";

如果 字符与 < 相似, 可以显示但不可替换, 请使用以下的正则 :





相关问题
Autoupdate VIM Plugins?

Is it possible to update vim plugins automatically?

how to unindent in vim without leaving edit mode?

I m writing a lot of python code recently, and i used the tab-to-space mode in vim. I was just wondering how would i unindent in vim without leaving edit mode for example after i finished if...: block....

Scrolling inside Vim in Mac s Terminal

I ve been googling around trying to figure out if it s possible to use my mouse wheel to scroll while inside Vim in Mac s Terminal, with no luck. It seems as if only X11 or iTerm support this. Before ...

Vim - Deleting XML Comments

How do I delete comments in XML? If the opening and the closing comment tags are on the same line, I use :g/^<!--.*-->$/d to delete the comment. How to delete the comments that are spread ...

Limiting a match in vim to certain filetypes?

I have the following in my .vimrc to highlight lines longer than 80 chars: highlight OverLength ctermbg=red ctermfg=white guibg=#592929 match OverLength /\%81v.*/ This works quite well. However, the ...

Profiling Vim startup time

I’ve got a lot of plugins enabled when using Vim – I have collected plugins over the years. I’m a bit fed up with how long Vim takes to start now, so I’d like to profile its startup and see which of ...