create a string like "AA";"BB";"CC";"DD", and so on
6 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Dyuman Joshi
2023 年 9 月 24 日
str = string(char('AA' + repmat((0:25)',1,2)))
1 件のコメント
Dyuman Joshi
2023 年 9 月 24 日
Another idea -
str = string(('A':'Z')');
str = join([str str],'')
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!