TStringList is a RTL class whose purpose is to store and manipulate a list of strings. It is defined in Classes.pas
3
votes
1answer
91 views
TStringList behavior with non ANSI files
In my application, when I want import a file, i use TStringList.
But, when someone export data from Excel, the file encoding is UCS-2 Little Endian, and TStringList can't read the data.
There is any ...
-1
votes
2answers
133 views
TStringList C++ Builder Access Violation [closed]
I am trying to access specfic items within a TStringList only if they exist.
if ( myTStringList->Count > -1 )
{
strSomeString = myTStringList->Strings[0];
}
why does this give me an ...
2
votes
1answer
157 views
How to save strings in a stringlist which is created in another procedure?
i need some help with my procedure. I want to save some strings in a stringlist which is created in another procedure. How can i do this?
I wrote a comment at the right place to understand it better.
...
1
vote
2answers
221 views
What is the equivalent 'streams' code of TStringList.SaveToFile and which is better for large amounts of data?
The following console application utilises TStringList.SaveToFile to write multiples lines to a text file:
program Project1;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
System.Classes;
...
5
votes
1answer
369 views
Delphi : Why TStringlist can't assign in procedure?
The first procedure :
procedure TestOne(List : TStringList);
var
TempList : TStringList;
begin
TempList := TStringList.Create;
TempList.Add('Test');
List := TempList;
TempList.Free;
end;
...
0
votes
1answer
187 views
Is there an equivalent of Delphi TStringList in Cocoa/Objective-C?
I'm currently trying to learn Cocoa/Objective-C to build Mac OS X softwares. I come from Delphi, and in Delphi a really really useful element is the TStringList. I'm looking for an equivalent in ...
-1
votes
3answers
130 views
syntax error, unexpected T_STRING, expecting ']' [closed]
Could someone please explain why I am recieving this error in the below code and what I can do to fix it, error is referring to : echo "<tr><td>{$r['logID']}</td><td><a ...
0
votes
1answer
195 views
Delphi: Upgrade from 6 to XE2 - TStringList
We have to upgrade to XE2 (from Delphi6).
I collected many informations about this, but one of them isn't clear for me.
We are using String - what is AnsiString in XE.
As I know we must replace all ...
3
votes
2answers
537 views
Delphi: TStringList.Contains?
Is there any integrated solution in Delphi 2007 to check whether a TStringList contains a part of a certain value?
e.g.:
List.AddObject('This is a string', customStringObject1);
...
0
votes
1answer
251 views
Searching a sorted TStringList for an entry with a prefix (StartsText)
I have a TStringList which is sorted and contains unique filenames. The list can be of any size (so it can be hundreds of thousands of entries). I want to check to see if any of the entries start with ...
0
votes
4answers
421 views
How can I loop through a delimited string and assign the contents of the string to local delphi variables?
I have written a Delphi function that loads data from a .dat file into a string list. It then decodes the string list and assigns to a string variable. The contents of the string use the '#' symbol as ...
1
vote
1answer
378 views
Delphi sort Stringlist with two fields on first
I'm implementing a local cache to speed up DNS lookups (IP->hostname).
The cache is loaded from a CSV file("1.1.1.1host.example.com") into a TStringList with two fields:
TStringList[0] := IPAddress;
...
3
votes
1answer
264 views
Virtual Listview, threads and memory consumption that doesn't go down
*Update: Two people told me that it's hard to help me without the real/full code. You pretty much have it below, but in case I forgot anything, here it is! laserrental.ca/MemoryProblem.zip
Version ...
-6
votes
3answers
183 views
Delphi - Get line index and data index from given data
So I have list of data that may contain different charters:
1dAAbt54
agFlE9dA
1295RTdd
First line data contains: 1d, AA, bt, 54. All I need is function that gives me the data of given index. ...
0
votes
2answers
518 views
Special Character restrictions for TStringList Name-Value Pairs?
I have a TStringList that is loaded with a few thousand Name-Value Pairs.
One of them is
004001000002000=Timbre2 Volume 0~127 4995
I find a specific index by calling IndexOfName with the string ...
4
votes
2answers
817 views
TStringList and TThread that does not free all of its memory
Version used: Delphi 7.
I'm working on a program that does a simple for loop on a Virtual ListView. The data is stored in the following record:
type TList=record
Item:Integer;
SubItem1:String;
...
13
votes
1answer
2k views
Why does memo.Lines use TStrings instead of TStringList?
Why does Memo.Lines use the abstract class TStrings? Why doesn't it use TStringList instead?
And should I convert it to TStringList before working with it?
3
votes
2answers
202 views
How to watch/inspect a stringlist range in Delphi IDE?
I often find myself in the situation that I am debugging what is going on in part of a stringlist,
e.g. data is being manipulated in the range StringList[StartOfBlock] to StringList[EndOfBlock].
One ...
-1
votes
1answer
304 views
VB6 and Delphi - TStringList is free by VB
I have the following situation:
An object is instantiated in VB6 using OCX made in Delphi.
when I
...
Dim x As New spdComponent
Set x = spdComponent.ConverterType (XML)
count = x.item.count
TXT = ...
4
votes
4answers
791 views
Add more than 1 delimiter in TStringList
This is my delimited text: $HEHDT,10.17,T*28$HEHDT,10.18,T*2A and so on...
The comma is my sentence delimiter. However, I want to use the asterisk as my delimiter as well.
Output I want to achieve ...
19
votes
5answers
2k views
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 as TStringList
var
sl : TStrings;
begin
sl := TStringList.Create;
// add ...
3
votes
2answers
495 views
Delphi: Types other than Integer for indexing TStringList items
Arrays can be indexed using user-defined enumerated types. For example:
type
TIndexValue = (ZERO = 0, ONE, TWO, THREE, FOUR);
var
MyArray: array[Low(TIndexValue) .. High(TIndexValue)] of String;
...
2
votes
1answer
349 views
How Can I Replace StringList.Sort with a Stable Sort in Delphi?
I'm doing a simple StringList.sort, but Delphi uses a QuickSort that is not a stable sort, meaning it may change the relative order of records with equal keys.
I need to use a stable sort. What would ...
0
votes
1answer
174 views
Delphi ReportBuilder how to liberate a file from TppTextPipeline
I need to find a way to free up the file used by my TppTextPipeline. After I print the report once I cannot reprint it because I get a: error file already in use.
I guess its because I am trying to ...
0
votes
1answer
104 views
Is it possible to use a TStringList where a filename was needed in reportbuilder
I connect to a webservice to get data for our reports. After retrieval I save the data as a CSV file using Tstringlists's SaveToFile method and the pass this filename to the TppTextPipeline from ...
7
votes
2answers
759 views
Code against an interface with TStrings and TStringList
I read with interest Nick Hodges blog on Why You Should Be Using Interfaces
and since I'm already in love with interfaces at a higher level in my coding I decided to look at how I could extend this ...
-1
votes
2answers
316 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
193 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 ...
1
vote
5answers
263 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;
...
5
votes
6answers
804 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
...
2
votes
1answer
719 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 ...
1
vote
1answer
257 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 ...
0
votes
1answer
211 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
335 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
977 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
...
2
votes
2answers
573 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
177 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 ...
8
votes
1answer
3k 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 ...
4
votes
10answers
1k 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, ...
5
votes
5answers
900 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.
2
votes
3answers
471 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
4answers
2k 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
vote
3answers
431 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
633 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 ...
24
votes
2answers
2k 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 ...
1
vote
1answer
423 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, '');
...
6
votes
5answers
600 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 ...
8
votes
2answers
3k views
delphi array of string stringlist conversion
Is there a simple way in delphi to convert an array of strings to a tstringlist?
2
votes
4answers
771 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 ...
2
votes
6answers
1k 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 ...

