|
Ok anyway what im wondering is would this end up being easier to put each line read in into its own level of an arrary or would it be easier to just go thought the text and find the end of line and then go from there.
well ok i have to take the data i read in from a file and replace all the chr(10) characters with with chr(13) & chr(10) this way it is readable in windows since the file is a linux file. but when i do this i just replace the 10 with the 13 & 10 would it be easier and probably more optimized to instead just when ever i find a chr(10) to just cut it off right there and put that line into its own level of the array? that when when i manipulate the lines later i dont have to search for the chr(13) & chr(10) again i just have to call the array level i want. would this be the smarter way around this or will it slow my program down? thanks for you help
right now i am not using the array but if it would be better off i will change my code to use an array. thanks again
|