Tagged Questions
TStringList is a RTL class whose purpose is to store and manipulate a list of strings. It is defined in Classes.pas
22
votes
2answers
622 views
TStringList splitting bugs
Recently I've been informed by a reputable SO user, that TStringList has splitting bugs which would cause it to fail parsing CSV data. I haven't been informed about the nature of these bugs, and a ...
15
votes
6answers
3k views
TStringList vs. TList<string>
what is the difference in using a standard
type
sl: TStringList
compared to using a generic TList
type
sl: TList<string>
?
As far as I can see, both behave exactly the same.
Is ...
10
votes
3answers
3k views
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 the capital letter "A". This was in contrast to a third party package that was sorting ...
8
votes
7answers
3k views
TStringList, Dynamic Array or Linked List in Delphi?
I have a choice.
I have a number of already ordered strings that I need to store and access. It looks like I can choose between using:
A TStringList
A Dynamic Array of strings, and
A Linked List of ...
7
votes
1answer
537 views
Using TStringList's AddObject with integers?
Using delphi 7:
How can I add an integer to the object portion of a stringlist item,
using AddObject?
How can I retrieve the integer back from a object
property of stringlist item?
How do I free all ...
6
votes
5answers
304 views
Why does Delphi's TStringList.InsertObject() method thrown an Exception if the list is Sorted?
In Delphi 6 if you try to insert an object into a TStringList that is sorted (Sorted = true) an Exception is thrown warning you that InsertObject() is not allowed on a sorted list. I could understand ...
6
votes
2answers
766 views
delphi array of string stringlist conversion
is there a simple way in delphi to convert an array of strings to a tstringlist?
thanks in advance.
6
votes
2answers
8k views
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
sl := TStringList.Create;
s := 'Users^foo bar^bar foo^foobar^barfoo';
...
5
votes
5answers
233 views
How can I show the contents of a TStringList in the debugger?
I want to display the entire content of a TStringList while debugging the application.
Instead I just get pointers. The Flist is showing only the address.
5
votes
3answers
561 views
Parsing a string using a delimiter to a TStringList, seems to also parse on spaces (Delphi)
I have a simple string which is delimited by some character, let's say a comma. I should be able to create a TStringList and set it's delimiter to a comma then set the DelimitedText to the text I ...
4
votes
6answers
271 views
Loading millions of records into a stringlist can be very slow
how can i load millions of records from tadotable into a stringlist very fast?
procedure TForm1.SlowLoadingIntoStringList(StringList: TStringList);
begin
StringList.Clear;
with SourceTable do
...
4
votes
10answers
504 views
TStringList of objects taking up tons of memory in Delphi XE
I'm working on a simulation program.
One of the first things the program does is read in a huge file (28 mb, about 79'000 lines,), parse each line (about 150 fields), create a class for the object, ...
4
votes
4answers
503 views
Delphi TStringList wrapper to implement on-the-fly compression
I have an application for storing many strings in a TStringList. The strings will be largely similar to one another and it occurs to me that one could compress them on the fly - i.e. store a given ...
4
votes
3answers
1k views
Replacement for TStringList in Delphi Prism
I am migrating an application written in Delphi 2007 .Net to Delphi Prism, which is the best option to replace the TStringList and TStrings class?
Thanks in advance.
Bye.
3
votes
4answers
415 views
Delphi Stringlist in Record
Is it possible to have a stringlist in a record? EG
TImportStats = record
ATotal:Integer;
BTotal:String;
AList:TStringist;
end;
and if I presume I would need to create it before using the ...
3
votes
5answers
1k views
How can I search faster for name/value pairs in a Delphi TStringList?
I implemented language translation in an application by putting all strings at runtime in a TStringList with:
procedure PopulateStringList;
begin
EnglishStringList.Append('CAN_T_FIND_FILE=It is ...
3
votes
1answer
268 views
Comparing and sorting Unicode filenames
Using Delphi 2007 and TMS components for Unicode utils and interface (upgrading to Delphi 2009 for Unicode support is not an option).
I'm storing a list of filenames in a string list ...
3
votes
3answers
1k views
Wrapping TStringList in a Record
I tend to use Delphi's TStringList for text manipulation, so I write a lot of procedures/functions like:
var
TempList: TStringList;
begin
TempList:= TStringList.Create;
try
// blah blah ...
2
votes
1answer
140 views
Delphi for loops and StringList Errors
Ok guys, I've been trying to find out every possible mistake i'm making but I give up... I need help! What I'm writing is an app to manage rentals for my job and when the date is past, my app removes ...
2
votes
2answers
191 views
How to identify Delphi StringList object is created or not
I have declared variable of TStringList in private section. In a button click event I want to access that TStringList object.
sVariable:= TStringList.Create;
sVariable.add('Test1');
Now whenever i ...
2
votes
3answers
129 views
How to synchronize equal lines in two stringlists
I have two stringlists that I wish to synchronize, so that equal lines get the same index, while different lines will be kept in the list where they originally were, and the other stringlist should ...
2
votes
3answers
145 views
c# - BinarySearch StringList with wildcard
I have a sorted StringList and wanted to replace
foreach (string line3 in CardBase.cardList)
if (line3.ToLower().IndexOf((cardName + Config.EditionShortToLong(edition)).ToLower()) >= ...
2
votes
6answers
622 views
Sorted TStringList, how does the sorting work?
I'm simply curious as lately I have been seeing the use of Hashmaps in Java and wonder if Delphi's Sorted String list is similar at all.
Does the TStringList object generate a Hash to use as an index ...
2
votes
3answers
1k views
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 a option to create User Presets, e.g. pre-defined choice of hashing algo's which the user can ...
2
votes
6answers
868 views
Any way to get TStringList.CommaText to not escape commas with quotes?
I'm doing some work with code generation, and one of the things I need to do is create a function call where one of the parameters is a function call, like so:
result := Func1(x, y, Func2(a, b, c));
...
1
vote
5answers
128 views
Are there good practices if any avoiding out of bounds index error when looping TStringList items?
:)
First thing, my code
procedure TForm1.Button3Click(Sender: TObject);
var tempId,i:integer;
begin
tempId:=strtoint(edit5.Text);
plik:=TStringList.Create;
...
1
vote
1answer
118 views
Delphi TStringList efcreate error, file used by another process
Been searching everywhere but I can't seem to get this working. When i run this code I get a EFCreateError telling me that the file is used by another process. I'm kinda new to using TStringLists so I ...
1
vote
3answers
260 views
TStringList .add produces duplicates from random function
Having a problem I can't seem to put my finger on. I am trying to gather strings (random code with letters and numbers) from a function call and place into my TStringList variable. Relevant code is ...
1
vote
2answers
280 views
Delphi Tstringlist, write file synch
I make a very simple log with tstringlist. I write it to file:
pLog.SaveToFile(FileName);
Somewhere there is a bug, and my computer is shut-down.
After, I cannot find my log file. Probably the file ...
1
vote
1answer
242 views
TStringList problem with values at index
So I have several summary files that I want to read and get the values from.
I am doing the following:
OutputSummary := TStringList.Create;
for idx := 0 to 82 do
OutputSummary.Insert(idx, '');
...
1
vote
1answer
94 views
PHP scripts output “T_STRING” (that's it)
I'm using the code here - Tool to find unused functions in php project (reproduced below) exactly as it is - just the path modified to my location and it behaves as follows:
root@server [/var/www]# ...
1
vote
1answer
643 views
How to impliment a stringlist property in a custom delphi component?
I am creating my first custom Delphi component. Its basically a custom Tpanel with header and lines text displayed on it.
I want to be able to add multiple lines text using a stringlist.
When ...
1
vote
2answers
693 views
Stringlist with delimiter as a string?
I have an attribute called HistoryText in a object that is stored as a string.
I want to show all rows in a grid. I should be able to delete and edit rows in the grid.
The format is:
...
1
vote
2answers
574 views
Sort a string list: Move or exchange items only
In Delphi / Pascal I would like to sort a TStringList alphabetically. But for this purpose, I can only use the following two methods:
Move: Moves a string from one index position to another, shifting ...
1
vote
5answers
691 views
Delphi stringlist finding negative keyword in list
I have two string lists that I'm working with. One that has a list of keywords, and then another that has a list of negative keywords. I want to be able to search through the list and pick out the ...
1
vote
7answers
882 views
Problem adding lots of strings to a TStringList
I have a problem adding strings to a TStringList. I've searched other posts but couldn't find an answer to this.
What I'm trying to do is to add a big amount of strings to a TStringList (more than ...
1
vote
7answers
1k views
Error in Free TStringList Object
procedure FreeListObjects( l : TStrings);
var i : integer;
BEGIN
FOR i := 0 TO l.Count -1 DO BEGIN
l.Objects[i].Free;
l.Objects[i] := NIL;
END;
end;
PROCEDURE StringListAdd;
...
1
vote
3answers
1k views
Want to read a file to a TStringList
Yes I want to read a simple a logfile into a TStringList and that is easy done with LoadFromFile. But the problem is that the file can be already opened by another program at the same time so an ...
1
vote
8answers
3k views
tStringList passing in C# to Delphi DLL
I have a Delphi DLL with a function defined as:
function SubmitJobStringList(joblist: tStringList; var jobno: Integer): Integer;
I am calling this from C#. How do I declare the first parameter as a ...
0
votes
1answer
67 views
Error while iterating stringList container..?
When I am iterating through "m_itFileBuffer" stringlist container, I get an exception while fetching the value from the iterator.This line of code works most of the times but only some time it gives ...
0
votes
2answers
139 views
Compatibility of a TStringList backup from old to newest versions
I have a backup system which uses a TStringList, but I code with an old Delphi (Ansi strings).
Basically I have this when I save:
...
MyStringList.SaveToStream(Str);
StrSz := Str.Size;
...
0
votes
5answers
266 views
TStringList local variable not initialized to nil - why?
I am using this code to check whether TStringList is created or not:
procedure TForm1.Button1Click(Sender: TObject);
var
sVariable : TStringList;
begin
if not Assigned(sVariable) then
...
0
votes
4answers
340 views
delete strings from TStringList
I have a List Box or a List View with items. And I have a String List with the same items (strings) as the List Box/List View. I want to delete all selected items in the List Box/List View from the ...
-1
votes
2answers
89 views
How to download files using data from tstring? Delphi and THttpGet
I have two string lists: name (contains file names), url (contains file urls).
I would like to download all neccessary files using THttpget in one loop, with a progress bar:
for d:=0 to ...
-1
votes
1answer
90 views
How to read text data (copied from an excel sheet) in Delphi?
I need to read the following text in a file and store the values with field names. Its actually copied from am excel sheet:
A: B C D E (not TEXT based)
Field Description Length in bytes ...