S
S
SHAKIRA2014-03-29 01:31:25
Delphi
SHAKIRA, 2014-03-29 01:31:25

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

1 answer(s)
M
M_PRO, 2014-03-31
@SHAKIRA

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 your question

Ask a Question

731 491 924 answers to any question