Registriert seit: 17. Sep 2006
Ort: Barchfeld
27.619 Beiträge
Delphi 12 Athens
|
AW: Split strings using string list
12. Aug 2011, 11:32
Set StrictDelimiter of strRow to true. This wasn' t available in earlier versions of Delphi, but since Delphi 2006 you can use this property, so blanks will be ignored.
[edit] By the way: you should use try-finally-blocks to avoid memory leaks in case of exceptions.
Delphi-Quellcode:
strParse := TStringList.Create;
try
strRow := TStringList.Create;
try
//Code
finally
strRow.Free;
end;
finally
strParse.Free;
end;
[/edit]
Detlef "Ich habe Angst vor dem Tag, an dem die Technologie unsere menschlichen Interaktionen übertrumpft. Die Welt wird eine Generation von Idioten bekommen." (Albert Einstein)
Dieser Tag ist längst gekommen
Geändert von DeddyH (12. Aug 2011 um 11:35 Uhr)
|