Dear All,
I'm writing a code which could read the following file:
(input.raw) contained:
11 12 13
21 22 23
31 32 33
While reading this file I want to do the following:
-Move cursor to the beginning of that file which is before "11", then start reading
-After reading 11 the ' ' will read in too, in this step I want to skip reading this line by moving the cursor to the beginning of next line which is before "21", then again skip reading this line when ' ' is found, move cursor to the beginning of next line which is before '31'.
Please help me I'm getting stuck in here.
Thanks in advance.