"For developers", "Server scripts", "Functions description", "Strings", "TStringList", "Methods", "Create".
A TStringList constructor. Create a list and assign it a variable of the TStringList type.
function TStringList.Create: TStringList;
The function returns an empty list for working with strings.
var
SL: TStringList;
begin
SL := TStringList.Create;
SL.Free;
end.