How to count certain characters in a word?
3 ビュー (過去 30 日間)
古いコメントを表示
I need to write a program, using loops and functions, that would count numbers of certain letters in a word.
For example if i input a word:'matlabprogram', and i want to count number of a,b,c,d letters in this word the program would say: a=3,b=3,c=0,d=0
Can you please help me?
P.S. sorry for my bad english
0 件のコメント
採用された回答
Andrei Bobrov
2013 年 4 月 2 日
a = ('a':'d')'
b = 'matlabprogram'
out1 = [cellstr(a), num2cell(histc(b,a)')]
0 件のコメント
その他の回答 (1 件)
Azzi Abdelmalek
2013 年 4 月 2 日
word='matlabprogram'
Lettre='abcd'
for k=1:numel(Lettre)
m=Lettre(k);
assignin('base',m,sum(ismember(word,m)))
end
1 件のコメント
Jan
2013 年 4 月 2 日
Although the OP asked for the names "a", "b", ... this is not a smart idea and I'd definitely avoid suggesting assignin.
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!