How to select the first letter of every word

I have no idea how I would go about doing this
Input: I like eating pizza Output: Ilep

 Réponse acceptée

Mohammad Abouali
Mohammad Abouali le 5 Déc 2015
Modifié(e) : Mohammad Abouali le 5 Déc 2015
str='I like eating pizza';
str2=cellfun(@(c) c(1),strsplit(str))

6 commentaires

Krish Desai
Krish Desai le 7 Déc 2015
Any ways to do this with loops? Just another way of doing it...I tried running this but it failed multiple hidden tests.
You will need to define "word". What is the first letter of the word "23skidoo" ? What is the first letter of each word in the question "What is the first letter of each word in the question "What is the first letter of each word in the question?"" ? What is the first letter of each word of "3 o'clock AM" ?
Mohammad Abouali
Mohammad Abouali le 8 Déc 2015
Modifié(e) : Mohammad Abouali le 8 Déc 2015
I am not sure what is "multiple hidden tests". But here is the loop form of the code:
str='I like eating pizza';
splittedStr=strsplit(str);
str2='';
for idx=1:numel(splittedStr)
str2(end+1)=splittedStr{idx}(1);
end
Krish Desai
Krish Desai le 10 Déc 2015
Walter, In 23skidoo, the first letter would be the s. In "3 o'clock AM" the output should be oA.
Krish Desai
Krish Desai le 10 Déc 2015
Also how would I be able to eliminate extra spaces? For instance if the input was ' I like eating pizza'?
Krish Desai
Krish Desai le 10 Déc 2015
Function strtrim to fix this problem.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by