Re: VIM command to convert comma delimited text to latex table

2002-02-20 Thread dman
On Wed, Feb 20, 2002 at 07:43:32PM -0800, Eric G. Miller wrote: | > > * Abner Gershon ([EMAIL PROTECTED]) [020220 09:01]: | > > > Can someone tell me search and replace commands I can use to | > > > convert comma delimited text in form: [...] | Umm, what about quoted text containing commas? Like:

Re: VIM command to convert comma delimited text to latex table

2002-02-20 Thread Eric G. Miller
On Thu, Feb 21, 2002 at 12:22:51PM +1100, Matthew Dalton wrote: > Vineet Kumar wrote: > > > > * Abner Gershon ([EMAIL PROTECTED]) [020220 09:01]: > > > Can someone tell me search and replace commands I can > > > use to convert comma delimited text in form: > > > "field 1","field 2","field 3" > > >

Re: VIM command to convert comma delimited text to latex table

2002-02-20 Thread Matthew Dalton
Vineet Kumar wrote: > > * Abner Gershon ([EMAIL PROTECTED]) [020220 09:01]: > > Can someone tell me search and replace commands I can > > use to convert comma delimited text in form: > > "field 1","field 2","field 3" > > to text file to be used in tabular latex file of form: > > field 1 & field 2

Re: VIM command to convert comma delimited text to latex table

2002-02-20 Thread Vineet Kumar
* Abner Gershon ([EMAIL PROTECTED]) [020220 09:01]: > Can someone tell me search and replace commands I can > use to convert comma delimited text in form: > "field 1","field 2","field 3" > to text file to be used in tabular latex file of form: > field 1 & field 2 & field 3 :%s/","/ \& /g :%s/"//g

Re: VIM command to convert comma delimited text to latex table

2002-02-20 Thread Carel Fellinger
On Wed, Feb 20, 2002 at 08:45:22AM -0800, Abner Gershon wrote: > Can someone tell me search and replace commands I can > use to convert comma delimited text in form: > "field 1","field 2","field 3" > to text file to be used in tabular latex file of form: > field 1 & field 2 & field 3 Well, it all

Re: VIM command to convert comma delimited text to latex table

2002-02-20 Thread Alan James
On Wed, Feb 20, 2002 at 08:45:22AM -0800, Abner Gershon wrote: > Can someone tell me search and replace commands I can > use to convert comma delimited text in form: > "field 1","field 2","field 3" > to text file to be used in tabular latex file of form: > field 1 & field 2 & field 3 > Will this