Online
Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.034 Beiträge
Delphi 12 Athens
|
AW: Split strings using string list
12. Aug 2011, 12:20
Also in etwa so:
Delphi-Quellcode:
function GetBarcodeCode(intNR: Integer; AIndex: Integer = 7): AnsiString;
var
Parse, Row: TStringList;
begin
Result := '';
Row := nil;
Parse := TStringList.Create;
try
Row := TStringList.Create;
Parse.Text := GetBarcodesResult;
Row.Delimiter := ' ';
Row.StrictDelimiter := True;
if (intNr > 0) and (intNr <= Parse.Count) then begin
Row.DelimitedText := Parse[intNR - 1];
if (AIndex > 0) and (AIndex <= Row.Count) then
Result := Row[AIndex - 1];
end;
finally
Parse.Free;
Row.Free;
end;
end;
Garbage Collector ... Delphianer erzeugen keinen Müll, also brauchen sie auch keinen Müllsucher.
my Delphi wish list : BugReports/FeatureRequests
Geändert von himitsu (12. Aug 2011 um 13:34 Uhr)
|