Create an string array with strings having both char and numbers
Show older comments
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.
Accepted Answer
More Answers (1)
n = 5;
S = "Analysis_" + (1:n)
You can also use implicit expansion to make an array if you so desired.
fruits = ["apple"; "banana"; "cherry"]
quantity = 1:4;
market = fruits + "_" + quantity
1 Comment
Vinay Killamsetty
on 12 Jun 2021
Categories
Find more on Operators and Elementary Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!