필터 지우기
필터 지우기

Convert array of numbers to an array of padded strings

조회 수: 4 (최근 30일)
dormant
dormant 2023년 9월 27일
답변: Fangjun Jiang 2023년 9월 27일
I have an array of numbers to convert to an array of strings.
>> stanums = 7:12;
>> stastrings = string( stanums );
stanums =
7 8 9 10 11 12
stastrings =
"7" "8" "9" "10" "11" "12"
How can I have the strings zero-padded? ie "07" "08" etc.
I tried with num2str, but can only manage that using a loop, and I would really like a more elegant way as my code has far too many loops in it already.

답변 (2개)

Star Strider
Star Strider 2023년 9월 27일
Use the compose function —
stanums = 7:12;
stastrings = compose("%02d", stanums)
stastrings = 1×6 string array
"07" "08" "09" "10" "11" "12"
Note the format descriptor string.
.

Fangjun Jiang
Fangjun Jiang 2023년 9월 27일
stanums = 7:12;
s=sprintf('%02d\n',stanums(:))
s =
'07 08 09 10 11 12 '

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

제품


릴리스

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by