How to count the number of letter case changes in a string array
1 回表示 (過去 30 日間)
古いコメントを表示
If i had a string like 'hfeHDdheD' for example. The case changes 3 times. How would i get matlab to take any string and have it tell me how many case changes there are?
I thought maybe I could have it be into a logical array of upper and lower case but i'm not sure how to count when it changes from 0 to 1 and then 1 to 0
0 件のコメント
回答 (1 件)
madhan ravi
2020 年 11 月 8 日
編集済み: madhan ravi
2020 年 11 月 8 日
c = 'hfeHDdheD';
nnz(diff(ismember(c, 'A':'Z')))
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!