无法计算Vim中的匹配数

时间:2009-03-15 01:05:11

标签: vim count match

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

例如,对于文本

<?

3 个答案:

答案 0 :(得分:12)

:%s/<?//ng

请参阅:h count-items

答案 1 :(得分:9)

Count-items描述了你的目标。

:%s/<?/whatever/ng

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

答案 2 :(得分: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