フィルターのクリア

finding highest values in string

10 ビュー (過去 30 日間)
James Connor
James Connor 2015 年 11 月 12 日
回答済み: Mohammad Abouali 2015 年 11 月 13 日
say I have a string x='asdqweqweasdddasdaaaaaaaaasdeeeeeer' and another string y='aed' how do I find the letter that occurs in x the most as long as its not in y so for example the most common letter in x is 'a' we ignore 'a' and find the second most common letter in x that does not appear in y which is 'e' we ignore 'e' because it appears in x we do this until we find the highest occurring letter in x that does not appear in y

採用された回答

Mohammad Abouali
Mohammad Abouali 2015 年 11 月 13 日
x='asdqweqweasdddasdaaaaaaaaasdeeeeeer';
y='aed';
uniqueCharsNotInY=unique(x(~ismember(x,y)));
charCount=arrayfun(@(c) sum(x==c),uniqueCharsNotInY');
mostRepeatedCharNotInY=uniqueCharsNotInY(charCount==max(charCount))
mostRepeatedCharNotInY =
s

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by