String to txt file with each value in a new line

조회 수: 1 (최근 30일)
Abdul Ghani Zahid
Abdul Ghani Zahid 2020년 4월 25일
답변: Pavel Osipov 2020년 4월 25일
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

답변 (1개)

Pavel Osipov
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!

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by