Re: Delimited Text
2005-08-26 02:06:13 AM
cppbuilder69
I suppose it would be if I weren't using BCB 5.
Joe
Quote
This seems to me to be much more efficient:
TStringList *pStrings = new TStringList;
AnsiString TestString = "a,b,c1a c1b,";
ExtractStrings( TSysCharSet() << '.', TSysCharSet(),
TestString.c_str(), pStrings );
~ JD