[fpc-pascal] CSV

2007-02-04 Thread Antal
For example: if you want that the csv string ';bb bb;' becomes a TStrings with 3 items (, bb bb and ), is necessary to transform ';bb bb;' into ';"bb bb";' But to do this in a generic way, without knowing if determined value has space than you have to parse each it

Re: [fpc-pascal] CSV

2007-02-04 Thread Luiz Americo
Antal escreveu: For example: if you want that the csv string ';bb bb;' becomes a TStrings with 3 items (, bb bb and ), is necessary to transform ';bb bb;' into ';"bb bb";' But to do this in a generic way, without knowing if determined value has space than you have

Re: [fpc-pascal] CSV

2007-02-04 Thread micahel schneider
Am Sonntag, 4. Februar 2007 13:37 schrieb Antal: > > For example: if you want that the csv string ';bb bb;' becomes a > > TStrings with 3 items (, bb bb and ), is necessary to transform > > ';bb bb;' into ';"bb bb";' > > But to do this in a generic way, without know