.Net Gurus,
I have a three text file with similar format of text inside the folder c:\Job \ (test1.txt, 1.test2.txt, test3.txt)
see below the format for the text file
---------------------------------------------------
test1.txt
Yogesh Patel has 23 credits to be earned to .....(line1)
his id#90000 - (line3)
his GPA: 87 (line5)
My question is how will i retrieve following information
Yogesh Patel (Which start with indexOf 0 position in the text file
ID#90000
GPA: 87
once i get this informatio from test1.txt again i need to move to test2.txt file inside the same folder and retrieve same kinds of information
Rekha Gupta
ID#23233
GPA:90 then finally look for test3.txt
at the end all of the data i looped thru these three different file i need to store in SQL server.
How can i accomplish this task ? Any suggestion pls ?