你如何计算 Vim 中的匹配数?
例如,对于文本
<?
:%s/<?//ng
见:h count-items
。
: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