create a string like "AA";"BB";"CC";"DD", and so on
6 views (last 30 days)
Show older comments
Alberto Acri
on 24 Sep 2023
Commented: Dyuman Joshi
on 24 Sep 2023
Hi! I would like to create a string like "AA";"BB";"CC";"DD",and so on.
The idea is similar to this:
letters_str = string(mat2cell('A':'Z',1,ones(1,26)))';
I would simply like to double the letters in 'letters_str'.
0 Comments
Accepted Answer
Dyuman Joshi
on 24 Sep 2023
str = string(char('AA' + repmat((0:25)',1,2)))
1 Comment
Dyuman Joshi
on 24 Sep 2023
Another idea -
str = string(('A':'Z')');
str = join([str str],'')
More Answers (0)
See Also
Categories
Find more on Characters and Strings 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!