Jak obciąć dany string o pewną ilość znaków i na końcu dodać znak ...
Adam Boduch
Oto gotowa funkcja:
function Cut(Value : String; Length : Integer) : String;
begin
Result := Copy(Value, 1, Length) + '..';
end;
Oto gotowa funkcja:
function Cut(Value : String; Length : Integer) : String;
begin
Result := Copy(Value, 1, Length) + '..';
end;
Super bardzo przydatne!
Dzięki.