Create an string array with strings having both char and numbers

조회 수: 1 (최근 30일)
Could you help me in creating a string array with strings containing characters and numbers in a sorted manner
Eg:
I want to create a string array with strings {"Analysis_1", "Analysis_2", "Analysis_3", "Analysis_4", ......, "Analysis_n"}
The values of 'n' should be defined in way that it can be varied by the user.

채택된 답변

David Hill
David Hill 2021년 6월 8일
k=[];
for n=1:25;
k=[k,string(sprintf('Analysis_%d',n))];
end

추가 답변 (1개)

Steven Lord
Steven Lord 2021년 6월 8일
n = 5;
S = "Analysis_" + (1:n)
S = 1×5 string array
"Analysis_1" "Analysis_2" "Analysis_3" "Analysis_4" "Analysis_5"
You can also use implicit expansion to make an array if you so desired.
fruits = ["apple"; "banana"; "cherry"]
fruits = 3×1 string array
"apple" "banana" "cherry"
quantity = 1:4;
market = fruits + "_" + quantity
market = 3×4 string array
"apple_1" "apple_2" "apple_3" "apple_4" "banana_1" "banana_2" "banana_3" "banana_4" "cherry_1" "cherry_2" "cherry_3" "cherry_4"

카테고리

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

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by