0
-Reading multiple lines from a txt file -Reading a specific line from a txt file
3 Answers
+ 5
@Albert
This is not a question.
+ 3
What is your question?
+ 2
First:
- open file
- while the file seek has not ended:
- read line
- close file
Second:
- open file
- while the file seek has not ended:
- if the current line matches your criteria (which?), store it
- close file