Hallo
Mein Problem ist es das ich eine Textdatei einlesen möchte.
Dies gelingt mir auch jedoch hab ich bei den Umlauten: öäü ein problem
so lese ich die Textdatei momentan aus:
Delphi-Quellcode:
sl.LoadFromFile('C:\Users\Tomi\Desktop\Text Mining Tool 1.1.42\LS_Wuerth.txt');
Zeile1 := sl[5]; // 6. Zeile auslesen
lbl_adress.Caption := Zeile1+#10+#13;
Zeile2 := sl[6];
lbl_adress.Caption := lbl_adress.Caption+''+Zeile2+#10+#13;
Zeile3 := sl[7];
lbl_adress.Caption := lbl_adress.Caption+Zeile3;
ps.: Ich hab gedacht es würde mit sl.LoadFromFile('C:\Users\Tomi\Desktop\Text Mining Tool 1.1.42\LS_Wuerth.txt',TEncoding UTF8);
funktionieren, aber falsch gedacht.
Ich bitte um Hilfe!