Borrar filtros
Borrar filtros

how can I eliminate space between characters of a string?

4 visualizaciones (últimos 30 días)
tina jain
tina jain el 11 de Mayo de 2015
Respondida: Guillaume el 11 de Mayo de 2015
e.g. let my string is this t P t P t P t P t P t P t P t P t P t How to convert this string with no white spaces t P t P t P t P t P t P t P t P t P t --->tptptptptptptptptptpt

Respuesta aceptada

Guillaume
Guillaume el 11 de Mayo de 2015
Either use strrep or plain matrix element comparison and deletion:
s = 't P t P t P t P t P t P t P t P t P t';
%option 1, strrep:
s1 = strrep(s, ' ', '')
%option 2, comparison and deletion
s2 = s; s2(s2 == ' ') = []

Más respuestas (0)

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