How to select the first letter of every word
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Krish Desai
el 5 de Dic. de 2015
Comentada: Krish Desai
el 10 de Dic. de 2015
I have no idea how I would go about doing this
Input: I like eating pizza Output: Ilep
0 comentarios
Respuesta aceptada
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
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!