String to txt file with each value in a new line
4 次查看(过去 30 天)
显示 更早的评论
I have a sring in which different binary values are seperated by spaces. I want export this data in a TXT file. but I want each value to be printed on a new line in the txt file.
for example the string I have is
' 00000110000000110101010011111111 00000110001111100001100001110011 00000110010000000011001110100100 00000110000100110100101111011101 '
and I want it in the txt file as
00000110000000110101010011111111
00000110001111100001100001110011
00000110010000000011001110100100
00000110000100110100101111011101
0 个评论
回答(1 个)
Pavel Osipov
2020-4-25
Hi.
1) If there are always the same number of spaces, then in MATLAB Editor - "Find and Replace" we change the Spaces to "; " - get the column and its-in .txt
2) If the number of spaces can be different, change the first of the series of spaces to ";", MATLAB should again give the column without taking into account the other spaces. I can't check now-r20a reinstalling. I.E. 2) = 1) :))
3) If you need to do automatic processing of some file name.m, then write a function to replace the space code = #32 with CR = #13 . Try it, I'll put MATLAB - I'll do it.
Good luck!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!