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!