How to remove the empty spaces from imported text file?
    3 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Smithy
 am 27 Jul. 2022
  
    
    
    
    
    Kommentiert: Smithy
 am 27 Jul. 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,[" ",","])';
0 Kommentare
Akzeptierte Antwort
  Walter Roberson
      
      
 am 27 Jul. 2022
        tline = 'no      1           -5           21           -5';           % imported text example
tt = regexp(tline, '\s+', 'split')
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Text Data Preparation finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

