Delphi, Delphi Prism, C#, .NET, Visual Studio, ASP.NET
segunda-feira, 1 de novembro de 2010
Dicas Delphi - Função para inverter um string
Salve, salve amigos,
function Inverte (wStr1: String): String;var i: Integer;begin
Result := '';
for i := Length( wStr1 ) downto 1 do Result := Result +
copy(wStr1,i,1 );end;
Um comentário:
valeu mano!!!
essa função é show de bola!
Postar um comentário