vote up 9 vote down star
2

I'm not sure it's possible or not, but one of the things I find I need to do often is to replace the contents of the file, but I want to use the current line number as a replacement option. So if I had a file like:

This is text to replace XX 
This is text to replace XX 
This is text to replace XX

I would want to be able to run a regex that would turn that file into:

This is text to replace 1
This is text to replace 2
This is text to replace 3

I've looked around, but I can't seem to find any way of doing this. Is this possible? Does anyone know of a simple way to approach this?

Thanks.

flag

58% accept rate

1 Answer

vote up 13 vote down check
:help sub-replace-expression

You can construct a replace expression like:

:s@ xx$@\=" " . line(".")@

... Which works for me.

link|flag
what is that magic with '@'. I moved through help and this is still isn't clear. – Mykola Golubyev Mar 9 at 20:54
1  
Thanks, that's just about the exact thing I was looking for. In my case, the expression I was looking for was: :%s/XX/\=line(".")/g Works like a charm. – Ryan Smith Mar 9 at 20:57
1  
Whatever non-alphanumeric character follows s is used as the delimiter of expressions. That @ could as easily be a comma, period, #, ", !, or ¥ as it could be / – greyfade Mar 9 at 20:58

Your Answer

Get an OpenID
or

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