Indy 9
|
procedure SplitColumnsNoTrim(const AData: String; AStrings: TStrings; const ADelim: String = ' ');
SplitColumnsNoTrim will clear the contents of AStrings prior to separating AData into lines. As lines are are located in AData, the TStrings.AddObject method is called to add the string value and a pointer to the integer position for the string value to the AStrings instance. SplitColumnsNoTrim is like SplitColumns except that whitespace characters are NOT removed from the parsed values prior to being added to the TStrings instance in AStrings.