vote up 3 vote down star

How can you count the number of matches in Vim?

For instance, for the text

<?
flag

2 Answers

vote up 5 vote down check
:%s/<?//ng

See :h count-items.

link|flag
I get the error message "Trailing characters". I tried the code with ":set report=0" too. – Masi Mar 15 at 1:46
I would try it again, the help for Trailing Characters describes "An argument has been added to an Ex command that does not permit one." – Cannonade Mar 15 at 1:55
@Cannonade: The same error again with the code E488. – Masi Mar 15 at 2:00
Hrmm .. Sorry Masi, don't know what is going on for you. I just double check this in a vim buffer on my machine, and it worked ok. – Cannonade Mar 15 at 2:04
If you copy/paste the code from a web browser you may pick up a trailing newline (^M). Try typing it in manually. – Brian Carper Mar 15 at 2:21
show 1 more comment
vote up 7 vote down

Count-items describes what you are after.

:%s/<?/whatever/ng

This is the substitution command, but the n flag avoids the actual substitution.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.