首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET >

请教读ini文件的时候能不能通过值来找关键字

2012-02-04 
请问读ini文件的时候能不能通过值来找关键字?如题![解决办法]补充上述方法(写个完整的吧):ini文件:[aaaa]x

请问读ini文件的时候能不能通过值来找关键字?
如题!

[解决办法]
补充上述方法(写个完整的吧):

ini文件:
[aaaa]
xxx=111
yyy=222

-------------------------

IniFile.ReadSectionValues( 'aaa ', MyStrList);

TempStrList.Delimiter := '= ';

for i := 0 to MyStrList.count - 1 do
begin
TempStrList.DelimitedText := MyStrList[i];
MyStrList[i] := TempStrList[1] + '= ' + TempStrList[0];
end;

showmessage(MyStrList.Values[ '111 ']);
showmessage(MyStrList.Values[ '222 ']);

热点排行