Write sections of a long string as new lines in a text document
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    David Haydock
 am 18 Jan. 2022
  
    
    
    
    
    Beantwortet: Steven Lord
    
      
 am 18 Jan. 2022
            I have a very long string value, approx. 13,000 characters long, that is made up of the letters X, Y and Z. So:
sub = 'XYZYXYZYZYZXYZYXYZ....'
and so on. Within the long string, there is also every so often a 0:
sub = '...X0Y...'
The 0 represents a break point. I need to write out this long sequence onto a single txt file, but at each instance where there is a '0', I need to remove that zero and start a new line on the text file.
How would I go about doing this?
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
  Steven Lord
    
      
 am 18 Jan. 2022
        sub = 'XYZYXYZYZYZXYZYXYZ0XYXYXYX';
sub2 = replace(sub, '0', newline)
0 Kommentare
Siehe auch
Kategorien
				Mehr zu Characters and Strings 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!


