...
Formatierter String gemäss den Vorgaben
Beispiel
Result = FormatString("%.2f",37.8); Resultat: 37.80 (z.B. für Geldbeträge) Result |
---|
...
Siehe auch
---
FormatString
FormatString |
|
Parameters: |
|
1) String | Formatstring (analog der sprintf() Funktion in C) |
2-n) (String|Integer|float) | Variable Argumentenliste mit Werten, welche im Formatstring verwendet werden. |
Rückgabe: String | Formatierter String gemäss den Vorgaben |
Beschreibung: | Z.B.: FormatString("%.2f",Lf_totAm) für Geldbeträge = FormatString("%d.%d.%04d",21,03,2017); Resultat: 21.3.2017 (z.B. für Daten) |
---|
Siehe auch
---