How to I divide any given text file into columns,based on no. of characters.
1 view (last 30 days)
Show older comments
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 Comments
Answers (1)
Image Analyst
on 25 Jan 2014
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 Comments
See Also
Categories
Find more on String in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!