Categories
How to parse links alphabetically in Delphi?
Hello! There is a task to parse links from one page and sort them alphabetically. Can you please tell me how this can be implemented? Delphi program
Answer the question
In order to leave comments, you need to log in
var StringList: TStringList; ... begin ... StringList:= TStringList.Create; try ... ... StringList.Sort; // here is the key line! finally StringList.Free; end; end;
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question