How to remove the empty spaces from imported text file?
2 次查看(过去 30 天)
显示 更早的评论
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,[" ",","])';
0 个评论
采纳的回答
Walter Roberson
2022-7-27
tline = 'no 1 -5 21 -5'; % imported text example
tt = regexp(tline, '\s+', 'split')
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Export 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!