How can I transform a number to string with space using num2str?
50 次查看(过去 30 天)
显示 更早的评论
What is the result of "num2str(1,'%2d')"? I think it should be " 1", but the results is "1". I mean there is no space before "1". Actually, the result of "num2str(1,'%02d')" is "01", and the result of "num2str(1,'%-2d')" is "1". And, the result of "sprintf('%2d',1)" is " 1".
How can I transform a number to string with space using num2str?
0 个评论
采纳的回答
Simon
2013-12-9
Hi!
Maybe this way?
num = [1000; 1001];
% numeric part
numpart = arrayfun(@(x) sprintf('%2d', mod(x,100)), num, 'UniformOutput', false);
% letter part
letterpart = char(mod(num,26*100)./100+65);
% concat everything
retsult = strcat(letterpart, numpart)
更多回答(2 个)
Walter Roberson
2013-12-5
Use sprintf instead of nu2str()
sprintf('%2d', 1)
3 个评论
Simon
2013-12-5
Hi!
Please compare
sprintf('%2d\n',[1;11])
and
sprintf('%d\n',[1;11])
Walter Roberson
2013-12-9
numt = num(:).'; %make sure it is row vector
rem100 = mod(numt, 100);
lead2600 = mod((numt - rem100) ./ 100, 26) + 65;
longstr = sprintf('%c%2d\n', [lead2600; rem100]);
strs = regexp(longstr, '\n', 'split');
Jung-Woo
2013-12-9
1 个评论
Walter Roberson
2013-12-9
You cannot use num2str() for this purpose. In situations in which every entry ends up with a leading blank, num2str() will strip off the leading blank.
另请参阅
类别
在 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!