web-dev-qa-db-fra.com

Ajouter des zéros à une chaîne

Comment ajouter du "0" à une chaîne pour que ma longueur soit toujours de 4?

Exemple

If input "1", 3 padding is added = 0001
If input "25", 2 padding is added = 0025
If input "301", 1 padding is added = 0301
If input "4501", 0 padding is added = 4501
141
001

Vous pouvez utiliser PadLeft

var newString = Your_String.PadLeft(4, '0');
261
kemiller2002
myInt.ToString("D4");
57
Rex M
string strvalue="11".PadRight(4, '0');

sortie = 1100

string strvalue="301".PadRight(4, '0');

sortie = 3010

string strvalue="11".PadLeft(4, '0');

sortie = 0011

string strvalue="301".PadLeft(4, '0');

sortie = 0301

25
Shiraj Momin
"1".PadLeft(4, '0');
9
Matthew Flaschen