I want read line by line a Unicode (UTF-8) text file created by Notepad, i don't want display the Unicode string in the screen, i want just read and compare the strings!.
This code read ANSI file line by line, and compare the strings
What i want
- Read test_ansi.txt line by line
- if the line = "b" print "YES!"
- else print "NO!"
rea...