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

 채택된 답변

Mohammad Abouali
Mohammad Abouali 2015년 12월 5일
편집: Mohammad Abouali 2015년 12월 5일

1 개 추천

str='I like eating pizza';
str2=cellfun(@(c) c(1),strsplit(str))

댓글 수: 6

Krish Desai
Krish Desai 2015년 12월 7일
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" ?
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 2015년 12월 10일
Walter, In 23skidoo, the first letter would be the s. In "3 o'clock AM" the output should be oA.
Krish Desai
Krish Desai 2015년 12월 10일
Also how would I be able to eliminate extra spaces? For instance if the input was ' I like eating pizza'?
Krish Desai
Krish Desai 2015년 12월 10일
Function strtrim to fix this problem.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Downloads에 대해 자세히 알아보기

태그

질문:

2015년 12월 5일

댓글:

2015년 12월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by