bryan sammon
bryan sammon

Reputation: 7441

vim match csv line with commas

Im having trouble matching X number of commas in a csv file

sometext,moretext,moretext2,moretext3,moretext4

Im trying to match up to the 3rd comma, any help?

The best I have so far is:

/.\{3},
/.\{-},
/.\{0,3},

but none of those are doing it for me, what am I doing wrong?

Upvotes: 0

Views: 518

Answers (1)

Jean
Jean

Reputation: 22705

This will match upto the third comma

/^\([^,]\+,\)\{3\} 

Upvotes: 2

Related Questions