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

1 visualización (últimos 30 días)
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 comentarios
Rik
Rik el 20 de Mzo. de 2020
In your code you didn't cut up the phrase into words.
Walter Roberson
Walter Roberson el 20 de Mzo. de 2020
Is "e-mail" one word or two?
How many words is "nonetheless"?

Iniciar sesión para comentar.

Respuestas (1)

John D'Errico
John D'Errico el 19 de Mzo. de 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.

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by