How to I divide any given text file into columns,based on no. of characters.
조회 수: 1 (최근 30일)
이전 댓글 표시
here in my case, text should be divided into columns with no. of characters 8 as shown below :
123456781234567812345678123456781234567812345678
Please help me with the logic.
댓글 수: 0
답변 (1개)
Image Analyst
2014년 1월 25일
For the only situation you gave, this code will do exactly what you asked.
s = '123456781234567812345678123456781234567812345678'
columnVector1 = s(1:8)
columnVector2 = s(9:16)
columnVector3 = s(17:24)
columnVector4 = s(25:32)
columnVector5 = s(33:40)
columnVector6 = s(41:48)
If you need something different, like a 2D array, a cell array, different lengths of input strings, etc. then you should say so - completely and explicitly specify all input and output conditions and requirements. http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 String에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!