Borrar filtros
Borrar filtros

Find count of repeated letters

1 visualización (últimos 30 días)
Jothi
Jothi el 30 de Sept. de 2013
Comentada: Jothi el 7 de Oct. de 2013
Sir,
How to find the no. of repeated sequence (letters) in the given sentence.
for example, a="I want THAAAAAT APPPPPLE ):):):";
The No. of repeated sequences are: 3
ie.,
1. THAAAAAT
2. APPPPPLE
3. ):):):
thanks

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 30 de Sept. de 2013
a='I want THAAAAAT APPPPPLE ):):):'
s=regexp(a,'\s+','split')
out=s(~cellfun(@(x) numel(unique(x))==numel(x),s))
  3 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 1 de Oct. de 2013
In totally, ll are not repeated letter?
Jothi
Jothi el 7 de Oct. de 2013
But one problem sir,
The input file is ,
a='I want THAAAAAT APPPPPLE ):):): totally unprepared'
In this input we get
out =
'THAAAAAT' 'APPPPPLE' '):):):' 'totally' 'unprepared'
But the required output is,
out =
'THAAAAAT' 'APPPPPLE' '):):):'
how to solve this problem.
thank you sir.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Entering Commands 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