Internet Direct (Indy) Version 9.0.1 Beta
CommaSeperatedToStringList
Fills a string list with values from a comma-delimited string.

procedure CommaSeperatedToStringList(AList: TStrings; const Value: string);
Parameters
AList: TStrings
List to store the values.

const Value: string
String containing comma-delimited values.

Description
CommaSeperatedToStringList is a procedure used to fill the TStringList AList parameter with the values from the Value parameter.

AList is cleared prior to adding values in the procedure.

Value is a comma-delimited list of values to loaded in the TStringList. Value can contain items that include the comma separator by using double quotation marks to enclosed the item. For example:

'Item One, "Item Two, with comma", Item Three'