Click here to Skip to main content
15,886,422 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i have a string array which keeps data which read from a file.
it consists 76 lines.

what i want to do is store those in different arrays.
like from 21st line to 31st line in 1 array. and 31st to 41st one array. how can i do it... plz help
Posted
Comments
Sergey Alexandrovich Kryukov 1-Jan-13 1:34am    
Help with what? You did not explain where did you stuck. What did you try so far?
And what, if you have 77 line, the solution will be different? :-)
—SA
Sith Indunil 1-Jan-13 1:55am    
i want to split 77 lines into 7 arrays each containing 10 lines of it. and do it without using vectors

1 solution

The thing is, you have to loop through every key in the string (char* or something..) and search for line-feeds (probably '\n's) and keep counting them. If the line-feed count is a multiple of 10 (or whatever number you want), You put those 10-lines in a new string array.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900