Hi! I have a sting 'aaaaaaabccccbbbdcccccaaaa' and I want to trasform it in 'abcbdca': I want to have only one of the consecutive equal value. Can you give me some suggests? Thanks

 Respuesta aceptada

Walter Roberson
Walter Roberson el 11 de Nov. de 2015
Editada: Walter Roberson el 11 de Nov. de 2015

1 voto

s = 'aaaaaaabccccbbbdcccccaaaa'
new_s = regexprep(s, '(.)(\1)+', '$1');

3 comentarios

pamela sulis
pamela sulis el 11 de Nov. de 2015
I have an other question: can I apply this expression to struct? I try but it give me an error
Stephen23
Stephen23 el 11 de Nov. de 2015
Editada: Stephen23 el 11 de Nov. de 2015
@pamela sulis: read the regexp documentation to learn the answer to your question: it describes the input str as "Input text, specified as a string or a cell array of strings." Struct is not listed.
pamela sulis
pamela sulis el 11 de Nov. de 2015
I use it in a struct and it give me a correct answer!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Centro de ayuda y File Exchange.

Preguntada:

el 11 de Nov. de 2015

Comentada:

el 11 de Nov. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by