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!