Einzelnen Beitrag anzeigen

Benutzerbild von Wolfgang Mix
Wolfgang Mix

Registriert seit: 13. Mai 2009
Ort: Lübeck
1.222 Beiträge
 
Delphi 2005 Personal
 
#12

Re: Umrechnen von Zahlensystem

  Alt 11. Dez 2009, 08:27
Delphi-Quellcode:
//Wolfgang Mix - Delphi-PRAXiS
function ReverseString (InString: string): string;
var hilf:string;
    i:integer;
begin
    hilf:='';
    for i:=length(InString) downto 1 do
      hilf:=hilf+InString[i];
    result:=hilf;
end;
Gruß

Wolfgang
Wolfgang Mix
if you can't explain it simply you don't understand it well enough - A. Einstein
Mein Baby:http://www.epubli.de/shop/buch/Grund...41818516/52824
  Mit Zitat antworten Zitat