How to convert number to string with fixed length?
55 次查看(过去 30 天)
显示 更早的评论
I need to convert an integer into a string with 4 digits; I mean if the number is 4, I need "0004", if the number is 360, I need "0360", and so on. The string function doesn't work for this. I would like to do it without using the if statement. Thank you.
0 个评论
采纳的回答
Asad (Mehrzad) Khoddam
2020-12-4
You can use sprintf
s=sprintf('%05d',124);
disp(s);
%05d means that you have leading zeros and the total length 0f 5
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!