Vim查找替换 与 正则表达式(3)

多选一匹配
    在一个查找模式中,"或" 运算符是 "\|"。例如:
    /foo\|bar
    这个命令匹配了 "foo" 或 "bar"。更多的抉择可以连在后面:
    /one\|two\|three
    匹配 "one","two" 或 "three"。
    如要匹配其多次重复,那么整个抉择结构须置于 "\(" 和 "\)" 之间:
    /\(foo\|bar\)\+
    这个命令匹配 "foo","foobar","foofoo","barfoobar",等等。
    再举个例子:
    /end\(if\|while\|for\)
    这个命令匹配 "endif","endwhile" 和 "endfor"。

Linux下使用vim命令编辑与修改文本内容  https://www.linuxidc.com/Linux/2018-03/151584.htm
Vim的简单用法和简单命令  https://www.linuxidc.com/Linux/2018-08/153384.htm
Vim常用命令及配置方案 https://www.linuxidc.com/Linux/2018-07/153145.htm
Vim 基本命令入门 https://www.linuxidc.com/Linux/2018-04/152130.htm
使用 Vi/Vim 编辑器:基础篇 https://www.linuxidc.com/Linux/2018-02/150858.htm

Linux公社的RSS地址:https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/b51cd5d5fbc3fb7bfc560b7ef0a698cc.html