Einzelnen Beitrag anzeigen

Benutzerbild von MrSpock
MrSpock
(Co-Admin)

Registriert seit: 7. Jun 2002
Ort: Owingen
5.865 Beiträge
 
Delphi 2010 Professional
 
#5

Re: Visual Basic VS Delphi -> String Encode / Decode

  Alt 4. Mai 2004, 22:11
Hallo agm65,

das ist gar nicht so schwer:

Code:
VB             PASCAL
=              :=
Len            Length
Mid(s, ab, anz) Copy(s, ab, anz)
Asc            Ord
Do Until...Loop repeat ... until bedingung
Und Function Encode(What As String) As String wird zu

Delphi-Quellcode:
function Encode(what: string): string;
var
  ...
begin

end;
Albert
Live long and prosper


MrSpock
  Mit Zitat antworten Zitat