How to add multiple 0s in front of number with numstr?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have been using " num2str(i,'%04d') " which is giving me strings of "0100," "0200," etc. I can't seem to figure out a version of the code that will give me "0001" "0002".
3 commentaires
Jan
le 25 Nov 2022
By the way, num2str calls sprintf internally.You can call this directly also:
sprintf('%04d', i)
Réponses (0)
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!