How to select the first letter of every word

 Respuesta aceptada

Mohammad Abouali
Mohammad Abouali el 5 de Dic. de 2015
Editada: Mohammad Abouali el 5 de Dic. de 2015
str='I like eating pizza';
str2=cellfun(@(c) c(1),strsplit(str))

6 comentarios

Krish Desai
Krish Desai el 7 de Dic. de 2015
Any ways to do this with loops? Just another way of doing it...I tried running this but it failed multiple hidden tests.
Walter Roberson
Walter Roberson el 7 de Dic. de 2015
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 el 8 de Dic. de 2015
Editada: Mohammad Abouali el 8 de Dic. de 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 el 10 de Dic. de 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 el 10 de Dic. de 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 el 10 de Dic. de 2015
Function strtrim to fix this problem.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Downloads en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 5 de Dic. de 2015

Comentada:

el 10 de Dic. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by