gpt4 book ai didi

vim - 在忽略文章 ('A' 和 'The' 的同时在 vim 中排序)

转载 作者:行者123 更新时间:2023-12-04 02:01:27 24 4
gpt4 key购买 nike

我有一个如下所示的 vim 文件:

ABBA
Duran Duran
The Beatles
The Rolling Stones
Styx

使用 vim 的 sort 命令会产生以下输出:
ABBA
Duran Duran
Styx
The Beatles
The Rolling Stones

我想要做的是在排序时忽略像“A”和“The”这样的文章。所以预期的输出是这样的
ABBA
The Beatles
Duran Duran
The Rolling Stones
Styx

最佳答案

:help :sort

When /{pattern}/ is specified and there is no [r] flag the text matched with {pattern} is skipped, so that you sort on what comes after the match. Instead of the slash any non-letter can be used.


:sort /^\(A \|The \)*/

这使排序:
(ABBA)
The (Beatles)
(Duran Duran)
The (Rolling Stones)
(Styx)

关于vim - 在忽略文章 ('A' 和 'The' 的同时在 vim 中排序),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44860789/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com