Hello, I have a text file that contains some lines and special characters words like "CAFÉ".
When I'm using de code below, the words that contains special characters returns with other characters, like "CAF■".
The original line inside the .txt file is: "0001 CAFÉ SÃO BRAZ"
The return is: "0001 CAF• S¬O BRAZ"
NOTE:. These characters used to show the return (• and ¬) are symbolic.
When I'm using de code below, the words that contains special characters returns with other characters, like "CAF■".
B4X:
dim FileReaderList as List
FileReaderList.initialize
FileReaderList = File.ReadList(File.DirAssets,"MyFile.txt")
msgbox(FileReaderList.get(0),"")
The original line inside the .txt file is: "0001 CAFÉ SÃO BRAZ"
The return is: "0001 CAF• S¬O BRAZ"
NOTE:. These characters used to show the return (• and ¬) are symbolic.