正则表达式 – 如何在vim中解释“:%g // t $”?

前端之家收集整理的这篇文章主要介绍了正则表达式 – 如何在vim中解释“:%g // t $”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我找到了这个

:%g/<h[12]>/ t$

http://www.vimregex.com/

它说

This command searches our file for the lines starting with <h1>@H_404_22@ or
<h2>@H_404_22@ and copies them to the end of the file.

但我无法理解部分/ t $,这是什么意思?

解决方法

如果在vim中运行此帮助命令:

:help copy

它将显示以下可以解释所有内容的帮助:

:[range]co[py] {address}                *:co* *:copy*
            Copy the lines given by [range] to below the line
            given by {address}.

                            *:t*
:t          Synonym for copy.

详细信息:

>:g:全局搜索
>< h [12]>:搜索< h1>或者< h2>
> t $或copy $:将[range]给出的行复制到{address}给出的行以下.

你可以把它变得更加冗长.但使用此等效命令更具可读性:

:%g/<h[12]>/ copy$

或这个:

:%g/<h[12]>/ co$

要在文件中复制匹配行,请使用:

:%g/<h[12]>/ copy0

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