how to remove vowels using matlab ?
17 次查看(过去 30 天)
显示 更早的评论
pleas help me to answer this following question :
Remove all the vowels in the given phrase.
Example:
Input s1 = 'Jack and Jill went up the hill'
Output s2 is 'Jck nd Jll wnt p th hll'
6 个评论
Andreas Goser
2013-10-1
Ah, I wasn't responding to Walter but was more generally mentioning such strange characters exist.
回答(3 个)
Jothi
2013-10-1
vow={'a','e','i','o','e'};
s1 = 'Jack and Jill went up the hill'
for i=1:5
output = strrep(s1, vow{i}, '');
s1=output;
end
output =
Jck nd Jll wnt up th hll
2 个评论
Jan
2013-10-1
@Jothi: vow need not be a cell. strrep is efficient, but this is an alternative:
vow = 'aeioe';
s1 = 'Jack and Jill went up the hill'
for k = 1:5
s1(s1 == vow(k)) = [];
end
Andrei Bobrov
2013-10-1
编辑:Andrei Bobrov
2013-10-1
regexprep(s1,{'a','e','i','o'},repmat({''},1,4))
or
regexprep(s1,'[aeio]','')
1 个评论
Walter Roberson
2013-10-1
Too efficient for a beginner answer. As was the answer I almost posted but decided against a second ago.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!