Storing bits and pieces of a text file using buffered reader
Post by:leila la
, Greenhorn
suppose i have a text file with several lines
3/3/3, 3,3,3
4/4/4,2,4,5
etc... how do i store the part with the 3/3/3 in a seperate array and the remaining numbers in different arrrays Like how can i take each part of the text and store it in diferent arrays. I know i can use the split statement but then what? plzz help
thanks in advance
Post by:Swastik Dey
, Rancher
You probably need to split statements here. Assuming that a variable called line contains the value.
Thanks Swastik Dey, but what do you mean that the variable called line contains the value. What sort of value are you referring to here?
Thank you for replying!
Post by:leila la
, Greenhorn
I found this code and was hoping someone could explain what was going on, it could help me.