Create an string array with strings having both char and numbers
2 views (last 30 days)
Show older comments
Vinay Killamsetty
on 8 Jun 2021
Commented: Vinay Killamsetty
on 12 Jun 2021
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.
0 Comments
Accepted Answer
More Answers (1)
Steven Lord
on 8 Jun 2021
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
See Also
Categories
Find more on Environment and Settings 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!