如何计算Vim中的匹配数量?
例如,对于文本
<?
答案 0 :(得分:12)
:%s/<?//ng
请参阅:h count-items
。
答案 1 :(得分:9)
答案 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