How to find longest sequennce within a character array?

조회 수: 5 (최근 30일)
That Guy
That Guy 2020년 11월 16일
댓글: Image Analyst 2020년 11월 16일
lets say Im given a random character array such as: 'aaabee' and i want to find the longest sequence of vowels. How would i go about doing this?
so far I have:
cArr = 'aaabee';
vow = ['a', 'e', 'i', 'o', 'u'];
ans = strfind(cArr, vow);
but this just returns: [ ]
anyhelp would be appreciated!

답변 (2개)

Ameer Hamza
Ameer Hamza 2020년 11월 16일
편집: Ameer Hamza 2020년 11월 16일
You can use regexp
cArr = 'xzyhd';
vow = '([aeiou]+)';
tkns = regexp(cArr, vow, 'tokens');
if isempty(tkns)
n = 0;
else
n = max(cellfun(@numel, [tkns{:}]));
end
Result
>> n
n =
5
  댓글 수: 3
That Guy
That Guy 2020년 11월 16일
편집: That Guy 2020년 11월 16일
this works, i just need it to output zero when a string without vowels is entered such as 'xzyhd' or ' ' .
sorry im so helpless this is my first experince with coding:(
Ameer Hamza
Ameer Hamza 2020년 11월 16일
I have updated the answer. Now it will output 0 for the mentioned cases.

댓글을 달려면 로그인하십시오.


Setsuna Yuuki.
Setsuna Yuuki. 2020년 11월 16일
편집: Setsuna Yuuki. 2020년 11월 16일
cArr = 'aaabee';
vow = ['a', 'e', 'i', 'o', 'u'];
for n=1:length(vow)
a = strfind(cArr, vow(n)); %search letter by letter
repeat{n} = a; %place in "cArr"
if (a ~= NaN)
long(n) = length(a); %number of repetitions
else
long(n) = 0;
end
end
t = table(vow',long')
Table:
  댓글 수: 4
Setsuna Yuuki.
Setsuna Yuuki. 2020년 11월 16일
편집: Setsuna Yuuki. 2020년 11월 16일
has been interesting this problem, i changed all code because I understood bad your problem.
clear large;
cArr = 'aaeeaaapriioaeaaa';
vow = ['a', 'e', 'i', 'o', 'u'];
var = 1;
for n=1:length(vow)
a = strfind(cArr, vow(n));
if(var == 1)
var(length(var):(length(var)+length(a))-1)=a;
else
var(length(var)+1:length(var)+length(a))=a;
end
end
var = sort(var); m = 0;
cont = 1;
for n = 1:length(var)-1
if(var(n) == (var(n+1)-1) && n ~= length(var)-1)
cont = cont +1;
elseif (var(n) ~= (var(n+1)-1))
m = m+1;
large(m) = cont;
cont = 1;
elseif(n == (length(var)-1))
cont = cont+1;
m = m+1;
large(m) = cont;
end
end
[longSeq, index] = max(large);
fprintf("The longest sequence is %i and is the sequence %i \n",longSeq, index);
I think I did this in C ++ jaja xd
Image Analyst
Image Analyst 2020년 11월 16일
What's the use case for this quirky thing? Why do you need to do it? It's not your homework you're asking people to do for you, is it? What's the real world use for this?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by