Top "Tstringlist" questions

TStringList is a RTL class whose purpose is to store and manipulate a list of strings.

Delphi: StringList Delimiter is always a space character even if Delimiter is set

I am having trouble with the delimiter in the TStringList Class. Take a look: var s: string; sl: TStringList; begin …

delphi delphi-7 delimiter tstringlist
How do I store and load a list of key-value pairs in a string?

I have a list of strings and the values they are to be replaced with. I'm trying to combine them …

string delphi tstringlist
Converting TStringlist to string with delimiter

I have a list of strings stored in TStringList, i want to convert it into string seperated by commas and …

delphi tstringlist
Delete strings from TStringList

I have a List Box or a List View with items. And I have a String List with the same …

string delphi tstringlist
Why variables are declared as TStrings and created as TStringList?

Why variables are declared as TStrings and created as TStringList? eg: the var sl is declared as TStrings but created …

delphi tstringlist
delphi array of string stringlist conversion

Is there a simple way in delphi to convert an array of strings to a tstringlist?

arrays delphi tstringlist
Removing duplicate from TStringList

I am parsing a dataset and assigning values to TStringList i want to avoid the duplicates. I use the following …

delphi tstringlist
Delphi - Read File To StringList, then delete and write back to file

I'm currently working on a program to generate the hashes of files, in Delphi 2010. As part of this I have …

delphi file tstringlist
How can I get TStringList to sort differently in Delphi

I have a simple TStringList. I do a TStringList.Sort on it. Then I notice that the underscore "_" sorts before …

delphi sorting ansi tstringlist
Delphi: TStringList.Contains?

Is there any integrated solution in Delphi 2007 to check whether a TStringList contains a part of a certain value? e.…

delphi find compare tstringlist