How can I split a word to parts?

8 visualizaciones (últimos 30 días)
Giorgi
Giorgi el 20 de En. de 2015
Comentada: Giorgi el 20 de En. de 2015
Hi all, Well I want to split a word into parts for example I have sentence a='Hello World', and I want to b='llo', How can I do such thing?
  4 comentarios
Stephen23
Stephen23 el 20 de En. de 2015
Editada: Stephen23 el 20 de En. de 2015
Where do you want to split the words: at space characters, after the first n characters, the n final characters, after any doubled characters, two digits before any vowel character, or one of a million other rules that could explain your example output string?
Your description is inadequate.
Giorgi
Giorgi el 20 de En. de 2015
I want to split at the first space character, well anyway for any sentence I want that function's output should be equal to the last three letter of the first word for a given sentence.

Iniciar sesión para comentar.

Respuesta aceptada

Ilham Hardy
Ilham Hardy el 20 de En. de 2015
thres = 3; %three last character of first word
a = 'Hello World';
b = strtok(a);
b = b(end-(thres-1):end);

Más respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 20 de En. de 2015
b='llo'

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!

Translated by