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
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
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