vote up 3 vote down star

Well I want to search for a string and find number of occurrences in a file opened using Vi editor.

flag

35% accept rate

3 Answers

vote up 4 vote down check

:g/xxxx/d

This will delete all the lines with pattern, and report how many deleted. Undo to get them back after.

link|flag
Of course, he can just omit the "d" so he doesn't have to unto the operation. – ldigas Apr 3 at 21:02
Note this only tells you how many lines - not how many occurences. I think dirk's is a better solution. – Neil Butterworth Apr 3 at 21:06
My solution below correctly counts multiple occurences within a line and there is nothing to undo. – MohitC Apr 3 at 21:14
vote up 6 vote down

You need the n flag. To count words use:

:%s/\i\+/&/gn

and a particular word:

:%s/the/&/gn

See count-items documentation section.

If you simply type in:

%s/pattern/pattern/g

then the status line will give you the number of matches in vi as well.

link|flag
It looks like this answer is for Vim users and not for Vi :( – kadeshpa Apr 3 at 20:52
Do you only have vi on your system? Which version? – dirkgently Apr 3 at 20:55
Someone tagged your quesiton with vim in it... I removed it. – ojblass Apr 3 at 21:52
vote up 3 vote down

:%s/string/string/g will give the answer.

link|flag
What a better answer. +5 if possible – ojblass Apr 4 at 0:49

Your Answer

Get an OpenID
or

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