vote up 3 vote down star

I am trying to search a text file for a certain pattern. If this pattern occurs then it means that the rest of the line is not needed and therefore can be deleted.

I have tried using the following commands, but so far have been unsuccessful.

:%s/{pattern}/d$

:g/{pattern}/d$

If anyone has any suggestions they would be greatly appreciated

thanks

flag

62% accept rate

2 Answers

vote up 4 vote down check

would :%s/{pattern}.*// work?

link|flag
yep that works great, thank you – smauel Feb 20 at 12:01
vote up 6 vote down

Alternatively, the following also works

:g/{pattern}/normal nd$

For what you want, I would go with mirod's suggestion. What I posted is a bit more flexible and might come in handy in similar situations.

Explanation:

On each line, where pattern matches, execute the following normal mode commands 'nd$'. With the cursor at the start of the line, 'n' jumps to the pattern, and 'd$' deletes to the end of the line.

link|flag

Your Answer

Get an OpenID
or

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