Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a huge list of numbers and I would like to add content on the end of each line. It's something like this:

Before:

123123
123123
13234
124125
12634
5234

After:

123123, 1
123123, 2
13234, 3
124125, 4
12634, 5
5234, 6

A couple of points:

  1. I know that :range s/oldpattern/newpattern/ will substitute the oldpattern by the new one.

  2. I know that for i in range(begin, end) | something | endfor can generate those extra numbers.

However, I don't know if it's possible to combine them to do what I want (or if there's a different way to do it). Does anybody knows how can I add those extra values automatically? I'm quite sure that it's possible using Vim, but I don't know how.

share|improve this question

3 Answers

You can do this by visually selecting the area then typing

:s/$/\=', '.(line('.')-line("'<")+1)<CR>

(range is added automatically when you type : from visual mode). Visual mode is needed to get line("'<") thing, if you are fine with typing line number in place of it use any range.

share|improve this answer

I'd do

:%!nl
:%s/\v^\s*(\d+)\s+(.*)$/\2, \1/g

nl will (by default) skip numbering empty lines

Or as a oneliner

:exec "%!nl"|%s/\v^\s*(\d+)\s+(.*)$/\2, \1/g
share|improve this answer
Note that nl does not number blank lines, so it may be necessary to use nl -ba, depending on the desired behavior. – William Pursell Nov 17 '12 at 22:12
:%!awk '{print $0", "NR}'

or

:%!perl -lpe '$_.=", $."'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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