Borrar filtros
Borrar filtros

How to remove the empty spaces from imported text file?

1 visualización (últimos 30 días)
Smithy
Smithy el 27 de Jul. de 2022
Comentada: Smithy el 27 de Jul. de 2022
Hey everybody,
I have a space delimited textfile and would like to know how to make 1*5 cell with tline.
With below code, it shows the 1*40 cell. Is there a way to make the 1*5 cell?
clear; close all; clc;
tline = 'no 1 -5 21 -5'; % imported text example
tt = split(tline,[" ",","])';

Respuesta aceptada

Walter Roberson
Walter Roberson el 27 de Jul. de 2022
tline = 'no 1 -5 21 -5'; % imported text example
tt = regexp(tline, '\s+', 'split')
tt = 1×5 cell array
{'no'} {'1'} {'-5'} {'21'} {'-5'}

Más respuestas (0)

Categorías

Más información sobre Data Import and Export en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by