Servus,
wuste jetzt nicht ganz wie ich das Thema nennen soll.
Habe eine Text- bzw. Inidatei mit folgendem Aufbau:
Zitat:
[option]
options_1=wert_1
options_2=wert_2
etc
Jetzt möchte ich gerne options_1 bis options_n auslesen und in einer Variable stecken.
Habe es zur Zeit so gelöst
Delphi-Quellcode:
const
options : array[1..4] of String =
(
('options_1'),
('options_2'),
...
);
begin
//...
Text := LowerCase(ini.ReadString('option',options[i],''));
if Text = 'options_1' then
obj.options_1 := text;
//...
Finde das aber recht unübersichtlich. Es gibt bestimmt was eleganteres wie oben, oder?
mfg