domingo, 31 de maio de 2009

Dicas Delphi - Invertendo uma string

Function ReverseStr(S : ShortString) : ShortString;
var
I : Integer;
begin

Result := '';
For I := Length(S) DownTo 1 Do
Result := Result + S[I];

end;

Nenhum comentário: