vote up 3 vote down star
2

I've a big file with lines that look like

2 No route to specified transit network

3 No route to destination

i.e. a number at the start of a line followed by a description.

And I'd like to transform that for use as a struct initializer

{2,"No route to specified transit network"},

{3,"No route to destination"},

How would I do this ?

flag

1 Answer

vote up 8 vote down check

Try

:%s/^\(\d\+\)\s\(.*\)$/{\1, "\2"},/

This uses search-and-replace and searches for a line starting with a digit, followed by whitespace, followed by arbitrary text until the end of the line. This is replaced by the pattern you specified.

Or, using “more magic” (thanks to Al in the comments):

:%s/\v^(\d+)\s(.*)$/{\1, "\2"},/
link|flag
+1. And use \d* instead of \d if some of the numbers have multiple digits. – Stephan202 Sep 2 at 9:42
Adjusted for my purpose to %s/^\(\d*\)[ ]*\s\(.*\)$/{\1, "\2"},/ . Thanks. – tired Sep 2 at 9:46
4  
@Stephan202: \d\+ might be better than \d* if you want to ensure that there's at least one digit. Also, you could save a bit of backslashing with :%s/\v^(\d+)\s(.*)$/{\1, "\2"},/ (:help \v). If you're sure they'll always be spaces, you could just do :%s/\v^(\d+) +(.*)$/{\1, "\2"},/ – Al Sep 2 at 10:11
AI: Thanks, I didn’t know about \v until now, very helpful. – Konrad Rudolph Sep 2 at 11:07
Drive-by +1: \v is awesome. Who doesn't love something called "more magic?" – ojrac Sep 2 at 17:49

Your Answer

Get an OpenID
or

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