function RightStr (Const Str: String; Size: Word): String; begin if Size > Length(Str) then Size := Length(Str); RightStr := Copy(Str, Length(Str)-Size+1, Size) end; function MidStr (Const Str: String; From, Size: Word): String; begin MidStr := Copy(Str, From, Size) end; function LeftStr (Const Str: String; Size: Word): String; begin LeftStr := Copy(Str, 1, Size) end; end;
Blog sur la conception, développement et le génie logiciel. Divers langages et systèmes d'exploitations sont traités.
mercredi 11 octobre 2000
Comment prendre des caractère dans une string?
Comment prendre des caractère dans une string?
Inscription à :
Publier les commentaires (Atom)
Aucun commentaire:
Enregistrer un commentaire