Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.079 Beiträge
Delphi 12 Athens
|
Re: Mathe mit Strings (die deutsche StringMatheLib ._. )
30. Jun 2009, 09:50
ja, die Beiden sind neu
Delphi-Quellcode:
* Function TMathe.SummeModulo(a, b, m: String): String;
Begin
Result := Modulo(Summe(a, b), m);
End;
Function TMathe.DifferenzModulo(a, b, m: String): String;
Begin
Result := Modulo(Differenz(a, b), m);
End;
wollte eigentlich nur noch schnell die Units aufräumen und etwas optimieren, bevor ich alles hochlade
und ups , blödes Copy&Paste
Neuste Erkenntnis:
Seit Pos einen dritten Parameter hat,
wird PoSex im Delphi viel seltener praktiziert.
|
|
Zitat
|