Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Text aus Datei laden, Single Quote Problem
18. Jun 2019, 11:42
Bei mir das gleich Ergebnis:
Delphi-Quellcode:
procedure TForm3.FormCreate(Sender: TObject);
var ini: TIniFile;
str: String;
begin
ini := TIniFile.Create('D:\Test123.ini');
try
// ini.WriteString('TEST', 'Str', 'Test und don''t und son ein mustn''t und bla und Test aber auch ein Test ist mit einem ''Test'' sehr don''t');
str := ini.ReadString('TEST', 'Str', '');
// str := UTF8ToWideString(ini.ReadString('TEST', 'Str', '')); <--- geht auch
MessageDLg(Str, mtInformation, [mbOK], 0);
finally
ini.Free;
end;
end;
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
Geändert von Neutral General (18. Jun 2019 um 11:44 Uhr)
|
|
Zitat
|