Effacer les filtres
Effacer les filtres

How would i adapt this code to make it work for a whole phrase, not just one word?

1 vue (au cours des 30 derniers jours)
Charlotte Reed
Charlotte Reed le 19 Mar 2020
Commenté : Walter Roberson le 20 Mar 2020
function out = word2piglatin
word = input ( 'Enter a word:' , 's' );
% Check if the first letter of the word is vowel or not
if ismember(word(1), 'aeiouAEIOU' )
out = [word 'way' ]; %Append 'way' to the word
else
out= [word(2:end) word(1) 'ay' ]; %Place the starting letter at the end and append the 'ay'
end
end
  10 commentaires
Rik
Rik le 20 Mar 2020
In your code you didn't cut up the phrase into words.
Walter Roberson
Walter Roberson le 20 Mar 2020
Is "e-mail" one word or two?
How many words is "nonetheless"?

Connectez-vous pour commenter.

Réponses (1)

John D'Errico
John D'Errico le 19 Mar 2020
Simplest would be to extract each word, one at a time. For example, consider this sentence (taken from your question):
phrase = 'Check if the first letter of the word is vowel or not';
w = strsplit(phrase)
w =
1×12 cell array
Columns 1 through 11
{'Check'} {'if'} {'the'} {'first'} {'letter'} {'of'} {'the'} {'word'} {'is'} {'vowel'} {'or'}
Column 12
{'not'}
Now you can just loop over the words as found. Apply the piglatin rules to each word. Be careful if there is punctuation.
I could have dome it similarly by using the function strtok.

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by