9

你如何计算 Vim 中的匹配数?

例如,对于文本

<?
4

3 回答 3

13
:%s/<?//ng

:h count-items

于 2009-03-15T01:19:04.430 回答
9

Count-items描述了你所追求的。

:%s/<?/whatever/ng

这是替换命令,但 n 标志避免了实际替换。

于 2009-03-15T01:21:32.443 回答
1
:help count-items

在 VIM 6.3 中,你会这样做:

:set report=0
:%s/<?/&/g   # returns the count without substitution

在 VIM 7.2 中,你会这样做:

:%s/<?/&/gn   # returns the count without substitution
于 2013-01-31T21:54:22.987 回答